├── Visualizer
├── sketch.properties
└── mindlink_visualizer.pde
├── PCB_Development_Files
├── README.md
├── PCB_connector_male_EASYEDA.json
├── PCB_connector_blank_EASYEDA.json
└── PCB_connector_bci_layer_2_EASYEDA.json
├── Notebook
├── Screenshot 2024-11-11 162127.jpg
├── Screenshot 2024-11-11 162155.jpg
├── Screenshot 2024-11-11 162318.jpg
└── Screenshot 2024-11-11 162333.jpg
├── 3D_Print_Files
└── ML.1 rev2
│ ├── samuelhp-ML-cover.stl
│ ├── samuelhp-ML-backplate-2.stl
│ ├── samuelhp-ML-magnet_connectors.stl
│ └── samuelhp_ML-interface-Connector1.stl
├── Gerber_Files
└── ML.1 rev2
│ ├── Gerber_mindlink_connector_bci_2025-03-07.zip
│ ├── Gerber_mindlink_connector_blank_2025-03-07.zip
│ ├── Gerber_mindlink_connector_male_2025-03-07.zip
│ ├── Gerber_mindlink_connector_female_2025-03-07.zip
│ └── Gerber_mindlink_connector_bci_layer_2_2025-03-07.zip
├── .gitignore
├── LICENSE
├── README.md
└── Firmware
├── makefile
├── Mind-link.h
├── Mind-link.inf
├── Descriptors.h
├── Config
└── LUFAConfig.h
├── Mind-link.c
└── Descriptors.c
/Visualizer/sketch.properties:
--------------------------------------------------------------------------------
1 | main=mindlink_visualizer.pde
2 |
--------------------------------------------------------------------------------
/PCB_Development_Files/README.md:
--------------------------------------------------------------------------------
1 | # PCB Files
2 | This directory contains the EasyEDA pcb development files
3 |
--------------------------------------------------------------------------------
/Notebook/Screenshot 2024-11-11 162127.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Notebook/Screenshot 2024-11-11 162127.jpg
--------------------------------------------------------------------------------
/Notebook/Screenshot 2024-11-11 162155.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Notebook/Screenshot 2024-11-11 162155.jpg
--------------------------------------------------------------------------------
/Notebook/Screenshot 2024-11-11 162318.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Notebook/Screenshot 2024-11-11 162318.jpg
--------------------------------------------------------------------------------
/Notebook/Screenshot 2024-11-11 162333.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Notebook/Screenshot 2024-11-11 162333.jpg
--------------------------------------------------------------------------------
/3D_Print_Files/ML.1 rev2/samuelhp-ML-cover.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/3D_Print_Files/ML.1 rev2/samuelhp-ML-cover.stl
--------------------------------------------------------------------------------
/3D_Print_Files/ML.1 rev2/samuelhp-ML-backplate-2.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/3D_Print_Files/ML.1 rev2/samuelhp-ML-backplate-2.stl
--------------------------------------------------------------------------------
/3D_Print_Files/ML.1 rev2/samuelhp-ML-magnet_connectors.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/3D_Print_Files/ML.1 rev2/samuelhp-ML-magnet_connectors.stl
--------------------------------------------------------------------------------
/3D_Print_Files/ML.1 rev2/samuelhp_ML-interface-Connector1.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/3D_Print_Files/ML.1 rev2/samuelhp_ML-interface-Connector1.stl
--------------------------------------------------------------------------------
/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_bci_2025-03-07.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_bci_2025-03-07.zip
--------------------------------------------------------------------------------
/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_blank_2025-03-07.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_blank_2025-03-07.zip
--------------------------------------------------------------------------------
/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_male_2025-03-07.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_male_2025-03-07.zip
--------------------------------------------------------------------------------
/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_female_2025-03-07.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_female_2025-03-07.zip
--------------------------------------------------------------------------------
/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_bci_layer_2_2025-03-07.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam-astro/Mind-link/HEAD/Gerber_Files/ML.1 rev2/Gerber_mindlink_connector_bci_layer_2_2025-03-07.zip
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Prerequisites
2 | *.d
3 |
4 | # Object files
5 | *.o
6 | *.ko
7 | *.obj
8 | *.elf
9 |
10 | # Linker output
11 | *.ilk
12 | *.map
13 | *.exp
14 |
15 | # Precompiled Headers
16 | *.gch
17 | *.pch
18 |
19 | # Libraries
20 | *.lib
21 | *.a
22 | *.la
23 | *.lo
24 |
25 | # Shared objects (inc. Windows DLLs)
26 | *.dll
27 | *.so
28 | *.so.*
29 | *.dylib
30 |
31 | # Executables
32 | *.exe
33 | *.out
34 | *.app
35 | *.i*86
36 | *.x86_64
37 | *.hex
38 |
39 | # Debug files
40 | *.dSYM/
41 | *.su
42 | *.idb
43 | *.pdb
44 |
45 | # Kernel Module Compile Results
46 | *.mod*
47 | *.cmd
48 | .tmp_versions/
49 | modules.order
50 | Module.symvers
51 | Mkfile.old
52 | dkms.conf
53 |
54 |
55 | # other
56 | *.eep
57 | *.lss
58 | *.sym
59 | *.bin
60 | tags
61 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2025 sam-astro
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Mind-link 🧠
2 | Project creating a proof-of-concept brain-computer interface from scratch. If you are looking for a working system using the method of EEG, look at using old Mind-Flex hardware, and this mod PCB: https://github.com/sam-astro/MindFlexFast-Mod
3 |
4 |
5 |
6 | > An image of the PCB stack module
7 |
8 |
9 |
10 | > An image of a body made of different materials
11 |
12 | ### Compilation and Uploading Steps:
13 |
14 | Edit `makefile` LUFA library path:
15 |
16 | ```makefile
17 | LUFA_PATH = ../lufa/LUFA
18 | ```
19 |
20 | Run `make`
21 |
22 | ```
23 | make
24 | ```
25 |
26 | There should be a file named `Mind-link.hex` inside of the current directory.
27 |
28 | Using a USBasp programmer, attached to the Mind-link ICSP header, we will now use avrdude to upload the hex file.
29 |
30 | ```
31 | avrdude -p m32u2 -P usb -c usbasp -u -U flash:w:Mind-link.hex
32 | ```
33 |
--------------------------------------------------------------------------------
/Firmware/makefile:
--------------------------------------------------------------------------------
1 | #
2 | # LUFA Library
3 | # Copyright (C) Dean Camera, 2021.
4 | #
5 | # dean [at] fourwalledcubicle [dot] com
6 | # www.lufa-lib.org
7 | #
8 | # --------------------------------------
9 | # LUFA Project Makefile.
10 | # --------------------------------------
11 |
12 | # Run "make help" for target help.
13 |
14 | MCU = atmega32u2
15 | ARCH = AVR8
16 | BOARD = USBKEY
17 | F_CPU = 16000000
18 | F_USB = $(F_CPU)
19 | OPTIMIZATION = s
20 | TARGET = Mind-link
21 | SRC = $(TARGET).c Descriptors.c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS)
22 | LUFA_PATH = ../../lufa/LUFA
23 | CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/
24 | LD_FLAGS =
25 |
26 | # Default target
27 | all:
28 |
29 | # Include LUFA-specific DMBS extension modules
30 | DMBS_LUFA_PATH ?= $(LUFA_PATH)/Build/LUFA
31 | include $(DMBS_LUFA_PATH)/lufa-sources.mk
32 | include $(DMBS_LUFA_PATH)/lufa-gcc.mk
33 |
34 | # Include common DMBS build system modules
35 | DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS
36 | include $(DMBS_PATH)/core.mk
37 | include $(DMBS_PATH)/cppcheck.mk
38 | include $(DMBS_PATH)/doxygen.mk
39 | include $(DMBS_PATH)/dfu.mk
40 | include $(DMBS_PATH)/gcc.mk
41 | include $(DMBS_PATH)/hid.mk
42 | include $(DMBS_PATH)/avrdude.mk
43 | include $(DMBS_PATH)/atprogram.mk
44 |
--------------------------------------------------------------------------------
/Firmware/Mind-link.h:
--------------------------------------------------------------------------------
1 | /*
2 | LUFA Library
3 | Copyright (C) Dean Camera, 2021.
4 |
5 | dean [at] fourwalledcubicle [dot] com
6 | www.lufa-lib.org
7 | */
8 |
9 | /*
10 | Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11 |
12 | Permission to use, copy, modify, distribute, and sell this
13 | software and its documentation for any purpose is hereby granted
14 | without fee, provided that the above copyright notice appear in
15 | all copies and that both that the copyright notice and this
16 | permission notice and warranty disclaimer appear in supporting
17 | documentation, and that the name of the author not be used in
18 | advertising or publicity pertaining to distribution of the
19 | software without specific, written prior permission.
20 |
21 | The author disclaims all warranties with regard to this
22 | software, including all implied warranties of merchantability
23 | and fitness. In no event shall the author be liable for any
24 | special, indirect or consequential damages or any damages
25 | whatsoever resulting from loss of use, data or profits, whether
26 | in an action of contract, negligence or other tortious action,
27 | arising out of or in connection with the use or performance of
28 | this software.
29 | */
30 |
31 | /** \file
32 | *
33 | * Header file for VirtualSerial.c.
34 | */
35 |
36 | #ifndef _VIRTUALSERIAL_H_
37 | #define _VIRTUALSERIAL_H_
38 |
39 | /* Includes: */
40 | //#include
41 | #include
42 | #include
43 | #include
44 | #include
45 | #include
46 | #include
47 | #include
48 | #include
49 | #include
50 |
51 | #include "Descriptors.h"
52 |
53 | /* Function Prototypes: */
54 | void SetupHardware(void);
55 | void HandleMuxAndIO(void);
56 |
57 | void EVENT_USB_Device_Connect(void);
58 | void EVENT_USB_Device_Disconnect(void);
59 | void EVENT_USB_Device_ConfigurationChanged(void);
60 | void EVENT_USB_Device_ControlRequest(void);
61 |
62 | #endif
63 |
--------------------------------------------------------------------------------
/Firmware/Mind-link.inf:
--------------------------------------------------------------------------------
1 | ;************************************************************
2 | ; Windows USB CDC ACM Setup File
3 | ; Copyright (c) 2000 Microsoft Corporation
4 | ;************************************************************
5 |
6 | [DefaultInstall]
7 | CopyINF="LUFA VirtualSerial.inf"
8 |
9 | [Version]
10 | Signature="$Windows NT$"
11 | Class=Ports
12 | ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
13 | Provider=%MFGNAME%
14 | DriverVer=7/1/2012,10.0.0.0
15 |
16 | [Manufacturer]
17 | %MFGNAME%=DeviceList, NTx86, NTamd64, NTia64
18 |
19 | [SourceDisksNames]
20 |
21 | [SourceDisksFiles]
22 |
23 | [DestinationDirs]
24 | DefaultDestDir=12
25 |
26 | [DriverInstall]
27 | Include=mdmcpq.inf
28 | CopyFiles=FakeModemCopyFileSection
29 | AddReg=DriverInstall.AddReg
30 |
31 | [DriverInstall.Services]
32 | Include=mdmcpq.inf
33 | AddService=usbser, 0x00000002, LowerFilter_Service_Inst
34 |
35 | [DriverInstall.AddReg]
36 | HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider"
37 |
38 | ;------------------------------------------------------------------------------
39 | ; Vendor and Product ID Definitions
40 | ;------------------------------------------------------------------------------
41 | ; When developing your USB device, the VID and PID used in the PC side
42 | ; application program and the firmware on the microcontroller must match.
43 | ; Modify the below line to use your VID and PID. Use the format as shown below.
44 | ; Note: One INF file can be used for multiple devices with different VID and PIDs.
45 | ; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
46 | ;------------------------------------------------------------------------------
47 | [DeviceList]
48 | %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044
49 |
50 | [DeviceList.NTx86]
51 | %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044
52 |
53 | [DeviceList.NTamd64]
54 | %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044
55 |
56 | [DeviceList.NTia64]
57 | %DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_2044
58 |
59 | ;------------------------------------------------------------------------------
60 | ; String Definitions
61 | ;------------------------------------------------------------------------------
62 | ;Modify these strings to customize your device
63 | ;------------------------------------------------------------------------------
64 | [Strings]
65 | MFGNAME="http://www.lufa-lib.org"
66 | DESCRIPTION="LUFA CDC-ACM Virtual Serial Port"
--------------------------------------------------------------------------------
/Visualizer/mindlink_visualizer.pde:
--------------------------------------------------------------------------------
1 | import processing.serial.*;
2 |
3 | Serial myPort;
4 | String currentPort;
5 | static String val;
6 | int[] values = new int[32]; // Array to store values for all 32 circles
7 | boolean serialConnected = false;
8 |
9 | void setup() {
10 | size(1300, 1300);
11 | noStroke();
12 |
13 | initSerial();
14 |
15 | // Initialize all values to 0
16 | for (int i = 0; i < values.length; i++) {
17 | values[i] = 0;
18 | }
19 | }
20 |
21 | void initSerial() {
22 | String portName = "/dev/ttyACM0"; // Update with your port
23 | do {
24 | try {
25 | myPort = new Serial(this, portName, 9600);
26 | currentPort=portName;
27 | serialConnected = true;
28 | break;
29 | }
30 | catch(Exception e) {
31 | println("Could not connect to serial port, trying again...");
32 | println(e);
33 | serialConnected = false;
34 | }
35 | } while (true);
36 | }
37 |
38 | void draw() {
39 | background(0);
40 |
41 | // Draw grid of circles
42 | int cols =6;
43 | int rows = 6;
44 | float circleSize = width/(cols*2);
45 |
46 | strokeWeight(5);
47 | noFill();
48 | stroke(150);
49 | circle(width/2, height/2, width-5);
50 | //noStroke();
51 |
52 | for (int i = 0; i < 4; i++) {
53 | int col = (i+1) % cols;
54 | int row = i / rows;
55 | float x = map(col, 0, cols-1, circleSize, width-circleSize);
56 | float y = map(row, 0, rows-1, circleSize, height-circleSize);
57 |
58 | fill(values[i]);
59 | ellipse(x, y, circleSize, circleSize);
60 | }
61 |
62 | for (int i = 4; i < values.length-4; i++) {
63 | int col = (i+2) % cols;
64 | int row = (i+2) / cols;
65 | float x = map(col, 0, cols-1, circleSize, width-circleSize);
66 | float y = map(row, 0, rows-1, circleSize, height-circleSize);
67 |
68 | fill(values[i]);
69 | ellipse(x, y, circleSize, circleSize);
70 | }
71 |
72 | for (int i =values.length-4; i < values.length; i++) {
73 | int col = (i+3) % cols;
74 | int row = (i+2) / cols;
75 | float x = map(col, 0, cols-1, circleSize, width-circleSize);
76 | float y = map(row, 0, rows-1, circleSize, height-circleSize);
77 |
78 | fill(values[i]);
79 | ellipse(x, y, circleSize, circleSize);
80 | }
81 |
82 | if (serialPortCheck()==true && serialConnected) {
83 | try {
84 | handleSerial();
85 | }
86 | catch(Exception e) {
87 | println("Error getting data from serial port");
88 | println(e);
89 | serialConnected = false;
90 | }
91 | } else{
92 | myPort.stop();
93 | delay(3000);
94 | initSerial();
95 | }
96 | }
97 |
98 |
99 | boolean serialPortCheck() {
100 | boolean connected = false;
101 | String[] str = Serial.list(); // Get the current list of available ports
102 | for (int i=0; i= 0 && index < values.length) {
129 | int v = val.charAt(i) == '1' ? 1 : 0;
130 | values[i] = v*255;
131 | // }
132 | }
133 | }
134 | //else
135 | //throw new Exception("null value");
136 | //}
137 | //catch(Exception e) {
138 | // println("Error parsing data: " + val);
139 | // println(e);
140 | // serialConnected = false;
141 | //}
142 | }
143 |
--------------------------------------------------------------------------------
/Firmware/Descriptors.h:
--------------------------------------------------------------------------------
1 | /*
2 | LUFA Library
3 | Copyright (C) Dean Camera, 2021.
4 |
5 | dean [at] fourwalledcubicle [dot] com
6 | www.lufa-lib.org
7 | */
8 |
9 | /*
10 | Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11 |
12 | Permission to use, copy, modify, distribute, and sell this
13 | software and its documentation for any purpose is hereby granted
14 | without fee, provided that the above copyright notice appear in
15 | all copies and that both that the copyright notice and this
16 | permission notice and warranty disclaimer appear in supporting
17 | documentation, and that the name of the author not be used in
18 | advertising or publicity pertaining to distribution of the
19 | software without specific, written prior permission.
20 |
21 | The author disclaims all warranties with regard to this
22 | software, including all implied warranties of merchantability
23 | and fitness. In no event shall the author be liable for any
24 | special, indirect or consequential damages or any damages
25 | whatsoever resulting from loss of use, data or profits, whether
26 | in an action of contract, negligence or other tortious action,
27 | arising out of or in connection with the use or performance of
28 | this software.
29 | */
30 |
31 | /** \file
32 | *
33 | * Header file for Descriptors.c.
34 | */
35 |
36 | #ifndef _DESCRIPTORS_H_
37 | #define _DESCRIPTORS_H_
38 |
39 | /* Includes: */
40 | #include
41 | #include
42 |
43 | /* Macros: */
44 | /** Endpoint address of the CDC device-to-host notification IN endpoint. */
45 | #define CDC_NOTIFICATION_EPADDR (ENDPOINT_DIR_IN | 2)
46 |
47 | /** Endpoint address of the CDC device-to-host data IN endpoint. */
48 | #define CDC_TX_EPADDR (ENDPOINT_DIR_IN | 3)
49 |
50 | /** Endpoint address of the CDC host-to-device data OUT endpoint. */
51 | #define CDC_RX_EPADDR (ENDPOINT_DIR_OUT | 4)
52 |
53 | /** Size in bytes of the CDC device-to-host notification IN endpoint. */
54 | #define CDC_NOTIFICATION_EPSIZE 8
55 |
56 | /** Size in bytes of the CDC data IN and OUT endpoints. */
57 | #define CDC_TXRX_EPSIZE 16
58 |
59 | /* Type Defines: */
60 | /** Type define for the device configuration descriptor structure. This must be defined in the
61 | * application code, as the configuration descriptor contains several sub-descriptors which
62 | * vary between devices, and which describe the device's usage to the host.
63 | */
64 | typedef struct
65 | {
66 | USB_Descriptor_Configuration_Header_t Config;
67 |
68 | // CDC Control Interface
69 | USB_Descriptor_Interface_t CDC_CCI_Interface;
70 | USB_CDC_Descriptor_FunctionalHeader_t CDC_Functional_Header;
71 | USB_CDC_Descriptor_FunctionalACM_t CDC_Functional_ACM;
72 | USB_CDC_Descriptor_FunctionalUnion_t CDC_Functional_Union;
73 | USB_Descriptor_Endpoint_t CDC_NotificationEndpoint;
74 |
75 | // CDC Data Interface
76 | USB_Descriptor_Interface_t CDC_DCI_Interface;
77 | USB_Descriptor_Endpoint_t CDC_DataOutEndpoint;
78 | USB_Descriptor_Endpoint_t CDC_DataInEndpoint;
79 | } USB_Descriptor_Configuration_t;
80 |
81 | /** Enum for the device interface descriptor IDs within the device. Each interface descriptor
82 | * should have a unique ID index associated with it, which can be used to refer to the
83 | * interface from other descriptors.
84 | */
85 | enum InterfaceDescriptors_t {
86 | INTERFACE_ID_CDC_CCI = 0, /**< CDC CCI interface descriptor ID */
87 | INTERFACE_ID_CDC_DCI = 1, /**< CDC DCI interface descriptor ID */
88 | };
89 |
90 | /** Enum for the device string descriptor IDs within the device. Each string descriptor should
91 | * have a unique ID index associated with it, which can be used to refer to the string from
92 | * other descriptors.
93 | */
94 | enum StringDescriptors_t {
95 | STRING_ID_Language = 0, /**< Supported Languages string descriptor ID (must be zero) */
96 | STRING_ID_Manufacturer = 1, /**< Manufacturer string ID */
97 | STRING_ID_Product = 2, /**< Product string ID */
98 | };
99 |
100 | /* Function Prototypes: */
101 | uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue,
102 | const uint16_t wIndex,
103 | const void** const DescriptorAddress)
104 | ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3);
105 |
106 | #endif
107 |
--------------------------------------------------------------------------------
/Firmware/Config/LUFAConfig.h:
--------------------------------------------------------------------------------
1 | /*
2 | LUFA Library
3 | Copyright (C) Dean Camera, 2021.
4 |
5 | dean [at] fourwalledcubicle [dot] com
6 | www.lufa-lib.org
7 | */
8 |
9 | /*
10 | Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11 |
12 | Permission to use, copy, modify, distribute, and sell this
13 | software and its documentation for any purpose is hereby granted
14 | without fee, provided that the above copyright notice appear in
15 | all copies and that both that the copyright notice and this
16 | permission notice and warranty disclaimer appear in supporting
17 | documentation, and that the name of the author not be used in
18 | advertising or publicity pertaining to distribution of the
19 | software without specific, written prior permission.
20 |
21 | The author disclaims all warranties with regard to this
22 | software, including all implied warranties of merchantability
23 | and fitness. In no event shall the author be liable for any
24 | special, indirect or consequential damages or any damages
25 | whatsoever resulting from loss of use, data or profits, whether
26 | in an action of contract, negligence or other tortious action,
27 | arising out of or in connection with the use or performance of
28 | this software.
29 | */
30 |
31 | /** \file
32 | * \brief LUFA Library Configuration Header File
33 | *
34 | * This header file is used to configure LUFA's compile time options,
35 | * as an alternative to the compile time constants supplied through
36 | * a makefile.
37 | *
38 | * For information on what each token does, refer to the LUFA
39 | * manual section "Summary of Compile Tokens".
40 | */
41 |
42 | #ifndef _LUFA_CONFIG_H_
43 | #define _LUFA_CONFIG_H_
44 |
45 | #if (ARCH == ARCH_AVR8)
46 |
47 | /* Non-USB Related Configuration Tokens: */
48 | // #define DISABLE_TERMINAL_CODES
49 |
50 | /* USB Class Driver Related Tokens: */
51 | // #define HID_HOST_BOOT_PROTOCOL_ONLY
52 | // #define HID_STATETABLE_STACK_DEPTH {Insert Value Here}
53 | // #define HID_USAGE_STACK_DEPTH {Insert Value Here}
54 | // #define HID_MAX_COLLECTIONS {Insert Value Here}
55 | // #define HID_MAX_REPORTITEMS {Insert Value Here}
56 | // #define HID_MAX_REPORT_IDS {Insert Value Here}
57 | // #define NO_CLASS_DRIVER_AUTOFLUSH
58 |
59 | /* General USB Driver Related Tokens: */
60 | // #define ORDERED_EP_CONFIG
61 | #define USE_STATIC_OPTIONS (USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)
62 | #define USB_DEVICE_ONLY
63 | // #define USB_HOST_ONLY
64 | // #define USB_STREAM_TIMEOUT_MS {Insert Value Here}
65 | // #define NO_LIMITED_CONTROLLER_CONNECT
66 | // #define NO_SOF_EVENTS
67 |
68 | /* USB Device Mode Driver Related Tokens: */
69 | // #define USE_RAM_DESCRIPTORS
70 | #define USE_FLASH_DESCRIPTORS
71 | // #define USE_EEPROM_DESCRIPTORS
72 | // #define NO_INTERNAL_SERIAL
73 | #define FIXED_CONTROL_ENDPOINT_SIZE 8
74 | // #define DEVICE_STATE_AS_GPIOR {Insert Value Here}
75 | #define FIXED_NUM_CONFIGURATIONS 1
76 | // #define CONTROL_ONLY_DEVICE
77 | #define INTERRUPT_CONTROL_ENDPOINT
78 | // #define NO_DEVICE_REMOTE_WAKEUP
79 | // #define NO_DEVICE_SELF_POWER
80 |
81 | /* USB Host Mode Driver Related Tokens: */
82 | // #define HOST_STATE_AS_GPIOR {Insert Value Here}
83 | // #define USB_HOST_TIMEOUT_MS {Insert Value Here}
84 | // #define HOST_DEVICE_SETTLE_DELAY_MS {Insert Value Here}
85 | // #define NO_AUTO_VBUS_MANAGEMENT
86 | // #define INVERTED_VBUS_ENABLE_LINE
87 |
88 | #elif (ARCH == ARCH_XMEGA)
89 |
90 | /* Non-USB Related Configuration Tokens: */
91 | // #define DISABLE_TERMINAL_CODES
92 |
93 | /* USB Class Driver Related Tokens: */
94 | // #define HID_HOST_BOOT_PROTOCOL_ONLY
95 | // #define HID_STATETABLE_STACK_DEPTH {Insert Value Here}
96 | // #define HID_USAGE_STACK_DEPTH {Insert Value Here}
97 | // #define HID_MAX_COLLECTIONS {Insert Value Here}
98 | // #define HID_MAX_REPORTITEMS {Insert Value Here}
99 | // #define HID_MAX_REPORT_IDS {Insert Value Here}
100 | // #define NO_CLASS_DRIVER_AUTOFLUSH
101 |
102 | /* General USB Driver Related Tokens: */
103 | #define USE_STATIC_OPTIONS (USB_DEVICE_OPT_FULLSPEED | USB_OPT_RC32MCLKSRC | USB_OPT_BUSEVENT_PRIHIGH)
104 | // #define USB_STREAM_TIMEOUT_MS {Insert Value Here}
105 | // #define NO_LIMITED_CONTROLLER_CONNECT
106 | // #define NO_SOF_EVENTS
107 |
108 | /* USB Device Mode Driver Related Tokens: */
109 | // #define USE_RAM_DESCRIPTORS
110 | #define USE_FLASH_DESCRIPTORS
111 | // #define USE_EEPROM_DESCRIPTORS
112 | // #define NO_INTERNAL_SERIAL
113 | #define FIXED_CONTROL_ENDPOINT_SIZE 8
114 | // #define DEVICE_STATE_AS_GPIOR {Insert Value Here}
115 | #define FIXED_NUM_CONFIGURATIONS 1
116 | // #define CONTROL_ONLY_DEVICE
117 | #define MAX_ENDPOINT_INDEX 4
118 | // #define NO_DEVICE_REMOTE_WAKEUP
119 | // #define NO_DEVICE_SELF_POWER
120 |
121 | #else
122 |
123 | #error Unsupported architecture for this LUFA configuration file.
124 |
125 | #endif
126 | #endif
127 |
--------------------------------------------------------------------------------
/PCB_Development_Files/PCB_connector_male_EASYEDA.json:
--------------------------------------------------------------------------------
1 | {
2 | "head": {
3 | "docType": "3",
4 | "editorVersion": "6.5.50",
5 | "newgId": true,
6 | "c_para": {},
7 | "x": "4020",
8 | "y": "3403",
9 | "hasIdFlag": true,
10 | "importFlag": 0,
11 | "transformList": ""
12 | },
13 | "canvas": "CA~1000~1000~#000000~yes~#FFFFFF~10~1000~1000~line~0.5~mm~1.1811~45~visible~0.5~4020~3403~0~yes",
14 | "shape": [
15 | "RECT~4228.382~3196.386~4.724~10.236~8~gge12037~0~0~~~GND~",
16 | "RECT~4236.256~3196.386~4.724~10.236~8~gge12034~0~0~~~D1~",
17 | "RECT~4244.13~3196.386~4.724~10.236~8~gge12031~0~0~~~D2~",
18 | "RECT~4220.508~3196.386~4.724~10.236~8~gge12052~0~0~~~GND~",
19 | "RECT~4228.382~3196.386~4.724~10.236~2~gge12013~0~0~~~GND~",
20 | "RECT~4236.256~3196.386~4.724~10.236~2~gge12010~0~0~~~D_-~",
21 | "RECT~4244.13~3196.386~4.724~10.236~2~gge12007~0~0~~~D_+~",
22 | "RECT~4220.508~3196.386~4.724~10.236~2~gge12046~0~0~~~VCC~",
23 | "CIRCLE~4216.85~3206.15~39.37~1~10~gge7~0~~circle_gge10,circle_gge13",
24 | "CIRCLE~4216.85~3206.15~3.937~7.874~7~gge506~0~S$17~circle_gge521,circle_gge524",
25 | "CIRCLE~4216.85~3206.15~15.85~4.3307~7~gge11470~0~GND~circle_gge11515,circle_gge11518",
26 | "CIRCLE~4216.85~3206.15~23.724~4.3307~7~gge11467~0~D_-~circle_gge11509,circle_gge11512",
27 | "CIRCLE~4216.85~3206.15~31.598~4.3307~7~gge11464~0~D_+~circle_gge11503,circle_gge11506",
28 | "CIRCLE~4216.85~3206.15~31.598~4.3307~1~gge305~0~D_+~circle_gge308,circle_gge311",
29 | "CIRCLE~4216.85~3206.15~15.85~4.3307~1~gge260~0~GND~circle_gge263,circle_gge266",
30 | "CIRCLE~4216.85~3206.15~3.937~7.874~1~gge16~0~VCC~circle_gge20,circle_gge23",
31 | "CIRCLE~4216.85~3206.15~23.724~4.3307~1~gge10437~0~D_-~circle_gge10440,circle_gge10443",
32 | "TRACK~1.1811~1~GND~4229.6256 3206 4232.55 3206 4232.7 3206.15~gge11866~0",
33 | "TRACK~1.1811~1~D_-~4237.5 3206 4240.4244 3206 4240.5744 3206.15~gge11869~0",
34 | "TRACK~1.1811~1~D_+~4245.3736 3206 4248.2984 3206 4248.4484 3206.15~gge11872~0",
35 | "VIA~4224.5~3206~2.441~VCC~0.6102~gge10930~0",
36 | "VIA~4237.5~3206~2.441~D_-~0.6102~gge10942~0",
37 | "VIA~4245.374~3206~2.441~D_+~0.6102~gge10954~0",
38 | "VIA~4229.626~3206~2.441~GND~0.6102~gge11398~0",
39 | "HOLE~4216.7~3166~4.5276~gge53868~0",
40 | "HOLE~4217~3246.3~4.5276~gge53874~0",
41 | "HOLE~4257~3206~5.9055~gge53908~0",
42 | "HOLE~4176.7~3206.3~5.9055~gge53911~0"
43 | ],
44 | "layers": [
45 | "1~TopLayer~#FF0000~true~true~true~",
46 | "2~BottomLayer~#0000FF~true~false~true~",
47 | "3~TopSilkLayer~#FFCC00~true~false~true~",
48 | "4~BottomSilkLayer~#66CC33~true~false~true~",
49 | "5~TopPasteMaskLayer~#808080~true~false~true~",
50 | "6~BottomPasteMaskLayer~#800000~true~false~true~",
51 | "7~TopSolderMaskLayer~#800080~true~false~true~0.3",
52 | "8~BottomSolderMaskLayer~#AA00FF~true~false~true~0.3",
53 | "9~Ratlines~#6464FF~false~false~true~",
54 | "10~BoardOutLine~#FF00FF~true~false~true~",
55 | "11~Multi-Layer~#C0C0C0~true~false~true~",
56 | "12~Document~#FFFFFF~true~false~true~",
57 | "13~TopAssembly~#33CC99~false~false~false~",
58 | "14~BottomAssembly~#5555FF~false~false~false~",
59 | "15~Mechanical~#F022F0~false~false~false~",
60 | "19~3DModel~#66CCFF~false~false~false~",
61 | "21~Inner1~#999966~false~false~false~~",
62 | "22~Inner2~#008000~false~false~false~~",
63 | "23~Inner3~#00FF00~false~false~false~~",
64 | "24~Inner4~#BC8E00~false~false~false~~",
65 | "25~Inner5~#70DBFA~false~false~false~~",
66 | "26~Inner6~#00CC66~false~false~false~~",
67 | "27~Inner7~#9966FF~false~false~false~~",
68 | "28~Inner8~#800080~false~false~false~~",
69 | "29~Inner9~#008080~false~false~false~~",
70 | "30~Inner10~#15935F~false~false~false~~",
71 | "31~Inner11~#000080~false~false~false~~",
72 | "32~Inner12~#00B400~false~false~false~~",
73 | "33~Inner13~#2E4756~false~false~false~~",
74 | "34~Inner14~#99842F~false~false~false~~",
75 | "35~Inner15~#FFFFAA~false~false~false~~",
76 | "36~Inner16~#99842F~false~false~false~~",
77 | "37~Inner17~#2E4756~false~false~false~~",
78 | "38~Inner18~#3535FF~false~false~false~~",
79 | "39~Inner19~#8000BC~false~false~false~~",
80 | "40~Inner20~#43AE5F~false~false~false~~",
81 | "41~Inner21~#C3ECCE~false~false~false~~",
82 | "42~Inner22~#728978~false~false~false~~",
83 | "43~Inner23~#39503F~false~false~false~~",
84 | "44~Inner24~#0C715D~false~false~false~~",
85 | "45~Inner25~#5A8A80~false~false~false~~",
86 | "46~Inner26~#2B937E~false~false~false~~",
87 | "47~Inner27~#23999D~false~false~false~~",
88 | "48~Inner28~#45B4E3~false~false~false~~",
89 | "49~Inner29~#215DA1~false~false~false~~",
90 | "50~Inner30~#4564D7~false~false~false~~",
91 | "51~Inner31~#6969E9~false~false~false~~",
92 | "52~Inner32~#9069E9~false~false~false~~",
93 | "99~ComponentShapeLayer~#00CCCC~false~false~false~0.4",
94 | "100~LeadShapeLayer~#CC9999~false~false~false~",
95 | "101~ComponentMarkingLayer~#66FFCC~false~false~false~",
96 | "Hole~Hole~#222222~false~false~true~",
97 | "DRCError~DRCError~#FAD609~false~false~true~"
98 | ],
99 | "objects": [
100 | "All~true~false",
101 | "Component~true~true",
102 | "Prefix~true~true",
103 | "Name~true~false",
104 | "Track~true~true",
105 | "Pad~true~true",
106 | "Via~true~true",
107 | "Hole~true~true",
108 | "Copper_Area~true~true",
109 | "Circle~true~true",
110 | "Arc~true~true",
111 | "Solid_Region~true~true",
112 | "Text~true~true",
113 | "Image~true~true",
114 | "Rect~true~true",
115 | "Dimension~true~true",
116 | "Protractor~true~true"
117 | ],
118 | "BBox": {
119 | "x": 4169.8,
120 | "y": 3160.5,
121 | "width": 94.1,
122 | "height": 91.4
123 | },
124 | "preference": {
125 | "hideFootprints": "",
126 | "hideNets": ""
127 | },
128 | "DRCRULE": {
129 | "Default": {
130 | "trackWidth": 1,
131 | "clearance": 0.6,
132 | "viaHoleDiameter": 2.4,
133 | "viaHoleD": 1.2
134 | },
135 | "isRealtime": false,
136 | "isDrcOnRoutingOrPlaceVia": false,
137 | "checkObjectToCopperarea": true,
138 | "showDRCRangeLine": true
139 | },
140 | "routerRule": {
141 | "unit": "mm",
142 | "trackWidth": 0.254,
143 | "trackClearance": 0.152,
144 | "viaHoleD": 0.305,
145 | "viaDiameter": 0.61,
146 | "routerLayers": [
147 | 1,
148 | 2
149 | ],
150 | "smdClearance": 0.152,
151 | "specialNets": [
152 | {
153 | "net": "VCC",
154 | "width": "1px",
155 | "clearance": "0.6px",
156 | "viaHoleD": "1.2px",
157 | "viaHoleDiameter": "2.4px"
158 | },
159 | {
160 | "net": "GND",
161 | "width": "1px",
162 | "clearance": "0.6px",
163 | "viaHoleD": "1.2px",
164 | "viaHoleDiameter": "2.4px"
165 | },
166 | {
167 | "net": "D-",
168 | "width": "1px",
169 | "clearance": "0.6px",
170 | "viaHoleD": "1.2px",
171 | "viaHoleDiameter": "2.4px"
172 | },
173 | {
174 | "net": "D+",
175 | "width": "1px",
176 | "clearance": "0.6px",
177 | "viaHoleD": "1.2px",
178 | "viaHoleDiameter": "2.4px"
179 | },
180 | {
181 | "net": "ID",
182 | "width": "1px",
183 | "clearance": "0.6px",
184 | "viaHoleD": "1.2px",
185 | "viaHoleDiameter": "2.4px"
186 | }
187 | ],
188 | "nets": [
189 | "D+",
190 | "D-",
191 | "GND",
192 | "ID",
193 | "VCC"
194 | ],
195 | "padsCount": 0,
196 | "skipNets": [],
197 | "realtime": true
198 | },
199 | "netColors": {}
200 | }
--------------------------------------------------------------------------------
/Firmware/Mind-link.c:
--------------------------------------------------------------------------------
1 | /*
2 | LUFA Library
3 | Copyright (C) Dean Camera, 2021.
4 |
5 | dean [at] fourwalledcubicle [dot] com
6 | www.lufa-lib.org
7 | */
8 |
9 | /*
10 | Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11 |
12 | Permission to use, copy, modify, distribute, and sell this
13 | software and its documentation for any purpose is hereby granted
14 | without fee, provided that the above copyright notice appear in
15 | all copies and that both that the copyright notice and this
16 | permission notice and warranty disclaimer appear in supporting
17 | documentation, and that the name of the author not be used in
18 | advertising or publicity pertaining to distribution of the
19 | software without specific, written prior permission.
20 |
21 | The author disclaims all warranties with regard to this
22 | software, including all implied warranties of merchantability
23 | and fitness. In no event shall the author be liable for any
24 | special, indirect or consequential damages or any damages
25 | whatsoever resulting from loss of use, data or profits, whether
26 | in an action of contract, negligence or other tortious action,
27 | arising out of or in connection with the use or performance of
28 | this software.
29 | */
30 |
31 | /** \file
32 | *
33 | * Main source file for the VirtualSerial demo. This file contains the main tasks of
34 | * the demo and is responsible for the initial application hardware configuration.
35 | */
36 |
37 | #include "Mind-link.h"
38 |
39 | #define INPUT_PIN PB4 // Pin Labelled d6
40 | #define CLK_PIN PD5 // Pin labelled d
41 | #define RST_COUNTER_PIN PB7 // Pin labelled d7
42 |
43 | #define CMD_LEN 20 // Set the buffer size of any input serial commands
44 |
45 | char cmdBuffer[CMD_LEN];
46 | char printBuffer[50] = {'0'};
47 | char* ReportString = "00000000000000000000000000000000\n\0";
48 |
49 | /** LUFA CDC Class driver interface configuration and state information. This structure is
50 | * passed to all CDC Class driver functions, so that multiple instances of the same class
51 | * within a device can be differentiated from one another.
52 | */
53 | USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface =
54 | {
55 | .Config =
56 | {
57 | .ControlInterfaceNumber = INTERFACE_ID_CDC_CCI,
58 | .DataINEndpoint =
59 | {
60 | .Address = CDC_TX_EPADDR,
61 | .Size = CDC_TXRX_EPSIZE,
62 | .Banks = 1,
63 | },
64 | .DataOUTEndpoint =
65 | {
66 | .Address = CDC_RX_EPADDR,
67 | .Size = CDC_TXRX_EPSIZE,
68 | .Banks = 1,
69 | },
70 | .NotificationEndpoint =
71 | {
72 | .Address = CDC_NOTIFICATION_EPADDR,
73 | .Size = CDC_NOTIFICATION_EPSIZE,
74 | .Banks = 1,
75 | },
76 | },
77 | };
78 |
79 | /** Standard file stream for the CDC interface when set up, so that the virtual CDC COM port can be
80 | * used like any regular character stream in the C APIs.
81 | */
82 | static FILE USBSerialStream;
83 |
84 | uint32_t cycles = 0;
85 | uint32_t cycles_max = 500;
86 |
87 | bool printOther = false;
88 |
89 | /** Main program entry point. This routine contains the overall program flow, including initial
90 | * setup of all components and the main program loop.
91 | */
92 | int main(void)
93 | {
94 | SetupHardware();
95 |
96 | /* Create a regular character stream for the interface so that it can be used with the stdio.h functions */
97 | CDC_Device_CreateStream(&VirtualSerial_CDC_Interface, &USBSerialStream);
98 |
99 | //LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
100 | GlobalInterruptEnable();
101 |
102 | for (;;)
103 | {
104 | if(cycles > cycles_max){
105 | HandleMuxAndIO();
106 | cycles = 0;
107 | }
108 |
109 | /* Must throw away unused bytes from the host, or it will lock up while waiting for the device */
110 | CDC_Device_ReceiveByte(&VirtualSerial_CDC_Interface);
111 |
112 | // Handle Serial Input
113 | fgets(cmdBuffer, CMD_LEN, &USBSerialStream);
114 |
115 | if(cmdBuffer[0] != '\n') // If first char is not newline, it contains command
116 | {
117 | if(strcmp(cmdBuffer, "cyclemax\n") == 0){
118 | cycles_max += 50;
119 | if(cycles_max > 2000)
120 | cycles_max = 0;
121 | printOther = true;
122 | sprintf(ReportString, "cyclemax is: %lu\n", cycles_max);
123 | //fputs(printBuffer, &USBSerialStream);
124 | }
125 | }
126 |
127 | CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
128 | USB_USBTask();
129 |
130 | cycles++;
131 | }
132 | }
133 |
134 | /** Configures the board hardware and chip peripherals for the demo's functionality. */
135 | void SetupHardware(void)
136 | {
137 | #if (ARCH == ARCH_AVR8)
138 | /* Disable watchdog if enabled by bootloader/fuses */
139 | MCUSR &= ~(1 << WDRF);
140 | wdt_disable();
141 |
142 | /* Disable clock division */
143 | clock_prescale_set(clock_div_1);
144 | #elif (ARCH == ARCH_XMEGA)
145 | /* Start the PLL to multiply the 2MHz RC oscillator to 32MHz and switch the CPU core to run from it */
146 | XMEGACLK_StartPLL(CLOCK_SRC_INT_RC2MHZ, 2000000, F_CPU);
147 | XMEGACLK_SetCPUClockSource(CLOCK_SRC_PLL);
148 |
149 | /* Start the 32MHz internal RC oscillator and start the DFLL to increase it to 48MHz using the USB SOF as a reference */
150 | XMEGACLK_StartInternalOscillator(CLOCK_SRC_INT_RC32MHZ);
151 | XMEGACLK_StartDFLL(CLOCK_SRC_INT_RC32MHZ, DFLL_REF_INT_USBSOF, F_USB);
152 |
153 | PMIC.CTRL = PMIC_LOLVLEN_bm | PMIC_MEDLVLEN_bm | PMIC_HILVLEN_bm;
154 | #endif
155 |
156 | // Set pins as outputs
157 | DDRD |= (1 << CLK_PIN);
158 | DDRB |= (1 << RST_COUNTER_PIN);
159 | // Set input pin
160 | DDRB &= ~(1 << INPUT_PIN);
161 |
162 | /* Hardware Initialization */
163 | //Joystick_Init();
164 | //LEDs_Init();
165 | USB_Init();
166 | }
167 |
168 | uint16_t currentPos = 0;
169 | bool clockStatus = false;
170 | bool resetStatus = false;
171 |
172 | /** Checks for changes in the position of the board joystick, sending strings to the host upon each change. */
173 | void HandleMuxAndIO(void)
174 | {
175 | if(printOther){
176 | fputs(ReportString, &USBSerialStream);
177 | }
178 | else{
179 | if(currentPos >= 32){
180 | resetStatus = true;
181 | PORTB |= (1<State.ControlLineStates.HostToDevice & CDC_CONTROL_LINE_OUT_DTR) != 0;
251 |
252 | (void)HostReady;
253 | }
254 |
--------------------------------------------------------------------------------
/PCB_Development_Files/PCB_connector_blank_EASYEDA.json:
--------------------------------------------------------------------------------
1 | {
2 | "head": {
3 | "docType": "3",
4 | "editorVersion": "6.5.50",
5 | "newgId": true,
6 | "c_para": {},
7 | "x": "4020",
8 | "y": "3403",
9 | "hasIdFlag": true,
10 | "importFlag": 0,
11 | "transformList": ""
12 | },
13 | "canvas": "CA~1000~1000~#000000~yes~#FFFFFF~10~1000~1000~line~0.5~mm~1.1811~45~visible~0.5~4020~3403~0~yes",
14 | "shape": [
15 | "CIRCLE~4216.85~3206.15~3.937~7.874~8~gge506~0~S$17~circle_gge521,circle_gge524",
16 | "CIRCLE~4216.85~3206.15~15.85~4.3307~8~gge11470~0~GND~circle_gge11515,circle_gge11518",
17 | "CIRCLE~4216.85~3206.15~23.724~4.3307~8~gge11467~0~D_-~circle_gge11509,circle_gge11512",
18 | "CIRCLE~4216.85~3206.15~31.598~4.3307~8~gge11464~0~D_+~circle_gge11503,circle_gge11506",
19 | "CIRCLE~4216.85~3206.15~31.598~4.3307~2~gge305~0~D_+~circle_gge308,circle_gge311",
20 | "CIRCLE~4216.85~3206.15~23.724~4.3307~2~gge10437~0~D_-~circle_gge10440,circle_gge10443",
21 | "CIRCLE~4216.85~3206.15~15.85~4.3307~2~gge260~0~GND~circle_gge263,circle_gge266",
22 | "CIRCLE~4216.85~3206.15~3.937~7.874~2~gge16~0~VCC~circle_gge20,circle_gge23",
23 | "CIRCLE~4216.85~3206.15~39.37~1~10~gge7~0~~circle_gge10,circle_gge13",
24 | "RECT~4182.259~3200.678~6.693~10.236~7~gge54074~0~0~~~D2~",
25 | "RECT~4190.133~3200.678~6.693~10.236~7~gge54077~0~0~~~D1~",
26 | "RECT~4198.007~3200.678~6.693~10.236~7~gge54080~0~0~~~GND~",
27 | "RECT~4229~3201.386~6.693~10.236~7~gge54083~0~0~~~GND~",
28 | "RECT~4236.874~3201.386~6.693~10.236~7~gge54086~0~0~~~D1~",
29 | "RECT~4244.748~3201.386~6.693~10.236~7~gge54089~0~0~~~D2~",
30 | "RECT~4182.259~3200.678~6.693~10.236~5~gge54038~0~0~~~D_+~",
31 | "RECT~4190.133~3200.678~6.693~10.236~5~gge54041~0~0~~~D_-~",
32 | "RECT~4198.007~3200.678~6.693~10.236~5~gge54044~0~0~~~GND~",
33 | "RECT~4229~3201.386~6.693~10.236~5~gge54047~0~0~~~GND~",
34 | "RECT~4236.874~3201.386~6.693~10.236~5~gge54050~0~0~~~D_-~",
35 | "RECT~4244.748~3201.386~6.693~10.236~5~gge54053~0~0~~~D_+~",
36 | "TRACK~1.1811~1~D_+~4245.3736 3206 4248.2984 3206 4248.4484 3206.15~gge11872~0",
37 | "TRACK~1.1811~1~D_-~4237.5 3206 4240.4244 3206 4240.5744 3206.15~gge11869~0",
38 | "TRACK~1.1811~1~GND~4229.6256 3206 4232.55 3206 4232.7 3206.15~gge11866~0",
39 | "RECT~4182.259~3200.678~6.693~10.236~1~gge53942~0~0~~~D_+~",
40 | "RECT~4190.133~3200.678~6.693~10.236~1~gge53945~0~0~~~D_-~",
41 | "RECT~4198.007~3200.678~6.693~10.236~1~gge53948~0~0~~~GND~",
42 | "RECT~4229~3201.386~6.693~10.236~1~gge53954~0~0~~~GND~",
43 | "RECT~4236.874~3201.386~6.693~10.236~1~gge53957~0~0~~~D_-~",
44 | "RECT~4244.748~3201.386~6.693~10.236~1~gge53960~0~0~~~D_+~",
45 | "PAD~ELLIPSE~4216.85~3206.15~7.874~7.874~1~VCC~3~0~~0~gge54197~0~~Y~0~0~0.4~4216.85,3206.15",
46 | "RECT~4181.5~3190~24~21.5~3~gge53939~0~1~none~~~",
47 | "RECT~4228.5~3201~23.5~21.5~3~gge53951~0~1~none~~~",
48 | "VIA~4216.85~3206.15~2.441~VCC~0.6102~gge10930~0",
49 | "VIA~4240.5~3206~2.441~D_-~0.6102~gge10942~0",
50 | "VIA~4248.5~3206~2.441~D_+~0.6102~gge10954~0",
51 | "VIA~4232.5~3206~2.441~GND~0.6102~gge11398~0",
52 | "VIA~4185.252~3206.15~2.441~D_+~0.6102~gge54128~0",
53 | "VIA~4193.126~3206.15~2.441~D_-~0.6102~gge54131~0",
54 | "VIA~4201~3206.15~2.441~GND~0.6102~gge54134~0",
55 | "HOLE~4176.7~3206.3~4.5276~gge54248~0",
56 | "HOLE~4216.7~3166~4.5276~gge54251~0",
57 | "HOLE~4217~3246.3~4.5276~gge54254~0",
58 | "HOLE~4257~3206~4.5276~gge54257~0"
59 | ],
60 | "layers": [
61 | "1~TopLayer~#FF0000~true~true~true~",
62 | "2~BottomLayer~#0000FF~true~false~true~",
63 | "3~TopSilkLayer~#FFCC00~true~false~true~",
64 | "4~BottomSilkLayer~#66CC33~true~false~true~",
65 | "5~TopPasteMaskLayer~#808080~true~false~true~",
66 | "6~BottomPasteMaskLayer~#800000~true~false~true~",
67 | "7~TopSolderMaskLayer~#800080~true~false~true~0.3",
68 | "8~BottomSolderMaskLayer~#AA00FF~true~false~true~0.3",
69 | "9~Ratlines~#6464FF~false~false~true~",
70 | "10~BoardOutLine~#FF00FF~true~false~true~",
71 | "11~Multi-Layer~#C0C0C0~true~false~true~",
72 | "12~Document~#FFFFFF~true~false~true~",
73 | "13~TopAssembly~#33CC99~false~false~false~",
74 | "14~BottomAssembly~#5555FF~false~false~false~",
75 | "15~Mechanical~#F022F0~false~false~false~",
76 | "19~3DModel~#66CCFF~false~false~false~",
77 | "21~Inner1~#999966~false~false~false~~",
78 | "22~Inner2~#008000~false~false~false~~",
79 | "23~Inner3~#00FF00~false~false~false~~",
80 | "24~Inner4~#BC8E00~false~false~false~~",
81 | "25~Inner5~#70DBFA~false~false~false~~",
82 | "26~Inner6~#00CC66~false~false~false~~",
83 | "27~Inner7~#9966FF~false~false~false~~",
84 | "28~Inner8~#800080~false~false~false~~",
85 | "29~Inner9~#008080~false~false~false~~",
86 | "30~Inner10~#15935F~false~false~false~~",
87 | "31~Inner11~#000080~false~false~false~~",
88 | "32~Inner12~#00B400~false~false~false~~",
89 | "33~Inner13~#2E4756~false~false~false~~",
90 | "34~Inner14~#99842F~false~false~false~~",
91 | "35~Inner15~#FFFFAA~false~false~false~~",
92 | "36~Inner16~#99842F~false~false~false~~",
93 | "37~Inner17~#2E4756~false~false~false~~",
94 | "38~Inner18~#3535FF~false~false~false~~",
95 | "39~Inner19~#8000BC~false~false~false~~",
96 | "40~Inner20~#43AE5F~false~false~false~~",
97 | "41~Inner21~#C3ECCE~false~false~false~~",
98 | "42~Inner22~#728978~false~false~false~~",
99 | "43~Inner23~#39503F~false~false~false~~",
100 | "44~Inner24~#0C715D~false~false~false~~",
101 | "45~Inner25~#5A8A80~false~false~false~~",
102 | "46~Inner26~#2B937E~false~false~false~~",
103 | "47~Inner27~#23999D~false~false~false~~",
104 | "48~Inner28~#45B4E3~false~false~false~~",
105 | "49~Inner29~#215DA1~false~false~false~~",
106 | "50~Inner30~#4564D7~false~false~false~~",
107 | "51~Inner31~#6969E9~false~false~false~~",
108 | "52~Inner32~#9069E9~false~false~false~~",
109 | "99~ComponentShapeLayer~#00CCCC~false~false~false~0.4",
110 | "100~LeadShapeLayer~#CC9999~false~false~false~",
111 | "101~ComponentMarkingLayer~#66FFCC~false~false~false~",
112 | "Hole~Hole~#222222~false~false~true~",
113 | "DRCError~DRCError~#FAD609~false~false~true~"
114 | ],
115 | "objects": [
116 | "All~true~false",
117 | "Component~true~true",
118 | "Prefix~true~true",
119 | "Name~true~false",
120 | "Track~true~true",
121 | "Pad~true~true",
122 | "Via~true~true",
123 | "Hole~true~true",
124 | "Copper_Area~true~true",
125 | "Circle~true~true",
126 | "Arc~true~true",
127 | "Solid_Region~true~true",
128 | "Text~true~true",
129 | "Image~true~true",
130 | "Rect~true~true",
131 | "Dimension~true~true",
132 | "Protractor~true~true"
133 | ],
134 | "BBox": {
135 | "x": 4171.2,
136 | "y": 3160.5,
137 | "width": 91.4,
138 | "height": 91.4
139 | },
140 | "preference": {
141 | "hideFootprints": "",
142 | "hideNets": ""
143 | },
144 | "DRCRULE": {
145 | "Default": {
146 | "trackWidth": 1,
147 | "clearance": 0.6,
148 | "viaHoleDiameter": 2.4,
149 | "viaHoleD": 1.2
150 | },
151 | "isRealtime": false,
152 | "isDrcOnRoutingOrPlaceVia": false,
153 | "checkObjectToCopperarea": true,
154 | "showDRCRangeLine": true
155 | },
156 | "routerRule": {
157 | "unit": "mm",
158 | "trackWidth": 0.254,
159 | "trackClearance": 0.152,
160 | "viaHoleD": 0.305,
161 | "viaDiameter": 0.61,
162 | "routerLayers": [
163 | 1,
164 | 2
165 | ],
166 | "smdClearance": 0.152,
167 | "specialNets": [
168 | {
169 | "net": "VCC",
170 | "width": "1px",
171 | "clearance": "0.6px",
172 | "viaHoleD": "1.2px",
173 | "viaHoleDiameter": "2.4px"
174 | },
175 | {
176 | "net": "GND",
177 | "width": "1px",
178 | "clearance": "0.6px",
179 | "viaHoleD": "1.2px",
180 | "viaHoleDiameter": "2.4px"
181 | },
182 | {
183 | "net": "D-",
184 | "width": "1px",
185 | "clearance": "0.6px",
186 | "viaHoleD": "1.2px",
187 | "viaHoleDiameter": "2.4px"
188 | },
189 | {
190 | "net": "D+",
191 | "width": "1px",
192 | "clearance": "0.6px",
193 | "viaHoleD": "1.2px",
194 | "viaHoleDiameter": "2.4px"
195 | },
196 | {
197 | "net": "ID",
198 | "width": "1px",
199 | "clearance": "0.6px",
200 | "viaHoleD": "1.2px",
201 | "viaHoleDiameter": "2.4px"
202 | }
203 | ],
204 | "nets": [
205 | "D+",
206 | "D-",
207 | "GND",
208 | "ID",
209 | "VCC"
210 | ],
211 | "padsCount": 0,
212 | "skipNets": [],
213 | "realtime": true
214 | },
215 | "netColors": {}
216 | }
--------------------------------------------------------------------------------
/Firmware/Descriptors.c:
--------------------------------------------------------------------------------
1 | /*
2 | LUFA Library
3 | Copyright (C) Dean Camera, 2021.
4 |
5 | dean [at] fourwalledcubicle [dot] com
6 | www.lufa-lib.org
7 | */
8 |
9 | /*
10 | Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11 |
12 | Permission to use, copy, modify, distribute, and sell this
13 | software and its documentation for any purpose is hereby granted
14 | without fee, provided that the above copyright notice appear in
15 | all copies and that both that the copyright notice and this
16 | permission notice and warranty disclaimer appear in supporting
17 | documentation, and that the name of the author not be used in
18 | advertising or publicity pertaining to distribution of the
19 | software without specific, written prior permission.
20 |
21 | The author disclaims all warranties with regard to this
22 | software, including all implied warranties of merchantability
23 | and fitness. In no event shall the author be liable for any
24 | special, indirect or consequential damages or any damages
25 | whatsoever resulting from loss of use, data or profits, whether
26 | in an action of contract, negligence or other tortious action,
27 | arising out of or in connection with the use or performance of
28 | this software.
29 | */
30 |
31 | /** \file
32 | *
33 | * USB Device Descriptors, for library use when in USB device mode. Descriptors are special
34 | * computer-readable structures which the host requests upon device enumeration, to determine
35 | * the device's capabilities and functions.
36 | */
37 |
38 | #include "Descriptors.h"
39 |
40 |
41 | /** Device descriptor structure. This descriptor, located in FLASH memory, describes the overall
42 | * device characteristics, including the supported USB version, control endpoint size and the
43 | * number of device configurations. The descriptor is read out by the USB host when the enumeration
44 | * process begins.
45 | */
46 | const USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
47 | {
48 | .Header = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device},
49 |
50 | .USBSpecification = VERSION_BCD(1,1,0),
51 | .Class = CDC_CSCP_CDCClass,
52 | .SubClass = CDC_CSCP_NoSpecificSubclass,
53 | .Protocol = CDC_CSCP_NoSpecificProtocol,
54 |
55 | .Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
56 |
57 | .VendorID = 0x03EB,
58 | .ProductID = 0x2044,
59 | .ReleaseNumber = VERSION_BCD(0,0,1),
60 |
61 | .ManufacturerStrIndex = STRING_ID_Manufacturer,
62 | .ProductStrIndex = STRING_ID_Product,
63 | .SerialNumStrIndex = USE_INTERNAL_SERIAL,
64 |
65 | .NumberOfConfigurations = FIXED_NUM_CONFIGURATIONS
66 | };
67 |
68 | /** Configuration descriptor structure. This descriptor, located in FLASH memory, describes the usage
69 | * of the device in one of its supported configurations, including information about any device interfaces
70 | * and endpoints. The descriptor is read out by the USB host during the enumeration process when selecting
71 | * a configuration so that the host may correctly communicate with the USB device.
72 | */
73 | const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
74 | {
75 | .Config =
76 | {
77 | .Header = {.Size = sizeof(USB_Descriptor_Configuration_Header_t), .Type = DTYPE_Configuration},
78 |
79 | .TotalConfigurationSize = sizeof(USB_Descriptor_Configuration_t),
80 | .TotalInterfaces = 2,
81 |
82 | .ConfigurationNumber = 1,
83 | .ConfigurationStrIndex = NO_DESCRIPTOR,
84 |
85 | .ConfigAttributes = (USB_CONFIG_ATTR_RESERVED | USB_CONFIG_ATTR_SELFPOWERED),
86 |
87 | .MaxPowerConsumption = USB_CONFIG_POWER_MA(100)
88 | },
89 |
90 | .CDC_CCI_Interface =
91 | {
92 | .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface},
93 |
94 | .InterfaceNumber = INTERFACE_ID_CDC_CCI,
95 | .AlternateSetting = 0,
96 |
97 | .TotalEndpoints = 1,
98 |
99 | .Class = CDC_CSCP_CDCClass,
100 | .SubClass = CDC_CSCP_ACMSubclass,
101 | .Protocol = CDC_CSCP_ATCommandProtocol,
102 |
103 | .InterfaceStrIndex = NO_DESCRIPTOR
104 | },
105 |
106 | .CDC_Functional_Header =
107 | {
108 | .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalHeader_t), .Type = CDC_DTYPE_CSInterface},
109 | .Subtype = CDC_DSUBTYPE_CSInterface_Header,
110 |
111 | .CDCSpecification = VERSION_BCD(1,1,0),
112 | },
113 |
114 | .CDC_Functional_ACM =
115 | {
116 | .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalACM_t), .Type = CDC_DTYPE_CSInterface},
117 | .Subtype = CDC_DSUBTYPE_CSInterface_ACM,
118 |
119 | .Capabilities = 0x06,
120 | },
121 |
122 | .CDC_Functional_Union =
123 | {
124 | .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalUnion_t), .Type = CDC_DTYPE_CSInterface},
125 | .Subtype = CDC_DSUBTYPE_CSInterface_Union,
126 |
127 | .MasterInterfaceNumber = INTERFACE_ID_CDC_CCI,
128 | .SlaveInterfaceNumber = INTERFACE_ID_CDC_DCI,
129 | },
130 |
131 | .CDC_NotificationEndpoint =
132 | {
133 | .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint},
134 |
135 | .EndpointAddress = CDC_NOTIFICATION_EPADDR,
136 | .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
137 | .EndpointSize = CDC_NOTIFICATION_EPSIZE,
138 | .PollingIntervalMS = 0xFF
139 | },
140 |
141 | .CDC_DCI_Interface =
142 | {
143 | .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface},
144 |
145 | .InterfaceNumber = INTERFACE_ID_CDC_DCI,
146 | .AlternateSetting = 0,
147 |
148 | .TotalEndpoints = 2,
149 |
150 | .Class = CDC_CSCP_CDCDataClass,
151 | .SubClass = CDC_CSCP_NoDataSubclass,
152 | .Protocol = CDC_CSCP_NoDataProtocol,
153 |
154 | .InterfaceStrIndex = NO_DESCRIPTOR
155 | },
156 |
157 | .CDC_DataOutEndpoint =
158 | {
159 | .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint},
160 |
161 | .EndpointAddress = CDC_RX_EPADDR,
162 | .Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
163 | .EndpointSize = CDC_TXRX_EPSIZE,
164 | .PollingIntervalMS = 0x05
165 | },
166 |
167 | .CDC_DataInEndpoint =
168 | {
169 | .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint},
170 |
171 | .EndpointAddress = CDC_TX_EPADDR,
172 | .Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
173 | .EndpointSize = CDC_TXRX_EPSIZE,
174 | .PollingIntervalMS = 0x05
175 | }
176 | };
177 |
178 | /** Language descriptor structure. This descriptor, located in FLASH memory, is returned when the host requests
179 | * the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate
180 | * via the language ID table available at USB.org what languages the device supports for its string descriptors.
181 | */
182 | const USB_Descriptor_String_t PROGMEM LanguageString = USB_STRING_DESCRIPTOR_ARRAY(LANGUAGE_ID_ENG);
183 |
184 | /** Manufacturer descriptor string. This is a Unicode string containing the manufacturer's details in human readable
185 | * form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
186 | * Descriptor.
187 | */
188 | const USB_Descriptor_String_t PROGMEM ManufacturerString = USB_STRING_DESCRIPTOR(L"sam-astro");
189 |
190 | /** Product descriptor string. This is a Unicode string containing the product's details in human readable form,
191 | * and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
192 | * Descriptor.
193 | */
194 | const USB_Descriptor_String_t PROGMEM ProductString = USB_STRING_DESCRIPTOR(L"Mindlink processor v ML.1");
195 |
196 | /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors"
197 | * documentation) by the application code so that the address and size of a requested descriptor can be given
198 | * to the USB library. When the device receives a Get Descriptor request on the control endpoint, this function
199 | * is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the
200 | * USB host.
201 | */
202 | uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue,
203 | const uint16_t wIndex,
204 | const void** const DescriptorAddress)
205 | {
206 | const uint8_t DescriptorType = (wValue >> 8);
207 | const uint8_t DescriptorNumber = (wValue & 0xFF);
208 |
209 | const void* Address = NULL;
210 | uint16_t Size = NO_DESCRIPTOR;
211 |
212 | switch (DescriptorType)
213 | {
214 | case DTYPE_Device:
215 | Address = &DeviceDescriptor;
216 | Size = sizeof(USB_Descriptor_Device_t);
217 | break;
218 | case DTYPE_Configuration:
219 | Address = &ConfigurationDescriptor;
220 | Size = sizeof(USB_Descriptor_Configuration_t);
221 | break;
222 | case DTYPE_String:
223 | switch (DescriptorNumber)
224 | {
225 | case STRING_ID_Language:
226 | Address = &LanguageString;
227 | Size = pgm_read_byte(&LanguageString.Header.Size);
228 | break;
229 | case STRING_ID_Manufacturer:
230 | Address = &ManufacturerString;
231 | Size = pgm_read_byte(&ManufacturerString.Header.Size);
232 | break;
233 | case STRING_ID_Product:
234 | Address = &ProductString;
235 | Size = pgm_read_byte(&ProductString.Header.Size);
236 | break;
237 | }
238 |
239 | break;
240 | }
241 |
242 | *DescriptorAddress = Address;
243 | return Size;
244 | }
245 |
246 |
--------------------------------------------------------------------------------
/PCB_Development_Files/PCB_connector_bci_layer_2_EASYEDA.json:
--------------------------------------------------------------------------------
1 | {
2 | "head": {
3 | "docType": "3",
4 | "editorVersion": "6.5.50",
5 | "newgId": true,
6 | "c_para": {},
7 | "x": "4020",
8 | "y": "3403",
9 | "hasIdFlag": true,
10 | "importFlag": 0,
11 | "transformList": ""
12 | },
13 | "canvas": "CA~1000~1000~#000000~yes~#FFFFFF~3.937~1000~1000~line~0.3937~mm~1~45~visible~0.03937~4020~3403~0~yes",
14 | "shape": [
15 | "TRACK~1~2~CLK~4188.9 3188.83 4188.11 3188.83 4182.36 3194.58 4182.36 3222.05 4193.23 3232.92~gge229656~0",
16 | "TRACK~1~2~DF~4243.6216 3217.1736 4218.4246 3217.1736 4216.85 3215.599~gge229824~0",
17 | "TRACK~1~2~RESET~4222.7555 3237.646 4222.7555 3223.8665 4226.6925 3219.9295~gge229746~0",
18 | "TRACK~1~2~RESET~4205.4327 3200.2445 4205.4327 3219.5358 4208.976 3223.0791 4210.5508 3223.0791~gge229692~0",
19 | "TRACK~1~2~A0~4193.23 3206.15 4191.65 3206.15 4189.29 3208.51 4189.29 3222.29 4198.35 3231.35 4200.71 3231.35 4201.1 3230.95~gge229239~0",
20 | "TRACK~1~2~A5~4194.8028 3215.5988 4194.8028 3211.6618 4197.5587 3208.9059 4197.5587 3201.8193 4194.0154 3198.276 4194.0154 3180.9532 4202.6768 3172.2918~gge229575~0",
21 | "TRACK~1~2~A4~4221.181 3206.15 4221.181 3179.379 4216.8501 3175.0481~gge229530~0",
22 | "TRACK~1~2~A3~4197.9524 3180.5595 4215.2755 3180.5595 4216.85 3182.134~gge229473~0",
23 | "TRACK~1~2~A11~4199.3304 3199.2209 4199.3304 3213.0397 4199.1335 3213.2366~gge229443~0",
24 | "TRACK~1~2~A8~4210.55 3220.32 4211.34 3220.32 4212.91 3218.75 4212.91 3213.24 4214.49 3211.66 4245.98 3211.66 4247.56 3213.24~gge229233~0",
25 | "TRACK~1~2~A7~4210.55 3217.57 4210.55 3212.06 4212.52 3210.09 4243.62 3210.09 4247.56 3206.15~gge229230~0",
26 | "TRACK~1~2~A11~4199.1335 3213.2366 4199.1335 3222.2917 4203.4642 3226.6224 4203.4642 3236.0718 4202.677 3236.859~gge229047~0",
27 | "COPPERAREA~1~2~GND~M 4112.5 3101.5 L 4279 3101.5 L 4341 3163.5 L 4341 3294.5 L 4315 3320.5 L 4112 3320.5 L 4109 3317.5 L 4109 3115.5 L 4107 3113.5 Z ~0.591~solid~gge30397~direct~none~[[\"M 4198.97588 3230.239 L 4198.8228 3230.20855 4198.69303 3230.12184 4190.51816 3221.94697 4190.43145 3221.8172 4190.401 3221.66412 4190.401 3209.27421 4190.43907 3209.1039 4190.54603 3208.96601 4190.70152 3208.88678 4190.87595 3208.8813 4191.03611 3208.9506 4191.34002 3209.1714 4191.77889 3209.40476 4192.24597 3209.57476 4192.73216 3209.6781 4193.228 3209.71277 4193.72384 3209.6781 4194.21003 3209.57476 4194.40935 3209.53361 4194.55891 3209.56872 4194.6842 3209.65762 4194.76675 3209.78719 4194.79437 3209.93831 4194.76299 3210.0887 4194.67724 3210.21617 4194.02514 3210.86827 4193.86262 3211.07105 4193.75474 3211.29507 4193.69941 3211.53748 4193.6918 3211.67302 4193.6918 3213.9961 4193.65772 3214.15767 4193.56128 3214.2917 4193.46513 3214.37935 4193.26383 3214.64591 4193.11494 3214.94492 4193.02353 3215.2662 4192.99271 3215.5988 4193.02353 3215.9314 4193.11494 3216.25268 4193.26383 3216.55169 4193.46513 3216.81825 4193.71198 3217.04328 4193.99598 3217.21912 4194.30745 3217.33979 4194.63579 3217.40116 4194.96981 3217.40116 4195.29815 3217.33979 4195.60962 3217.21912 4195.89362 3217.04328 4196.14047 3216.81825 4196.34177 3216.55169 4196.49066 3216.25268 4196.58207 3215.9314 4196.61289 3215.5988 4196.58207 3215.2662 4196.49066 3214.94492 4196.34177 3214.64591 4196.14047 3214.37935 4196.04432 3214.2917 4195.94788 3214.15767 4195.9138 3213.9961 4195.9138 3212.28768 4195.94425 3212.1346 4196.03096 3212.00483 4197.53656 3210.49923 4197.66633 3210.41252 4197.8194 3210.38208 4197.97247 3210.41252 4198.10224 3210.49923 4198.18895 3210.629 4198.2194 3210.78208 4198.2194 3211.4599 4198.18455 3211.6232 4198.08607 3211.75804 4197.79468 3212.01868 4197.59453 3212.28371 4197.44564 3212.58272 4197.35423 3212.904 4197.32341 3213.2366 4197.35423 3213.5692 4197.44564 3213.89048 4197.59453 3214.18949 4197.79583 3214.45605 4197.89198 3214.5437 4197.98842 3214.67773 4198.0225 3214.8393 4198.0225 3222.28048 4198.05097 3222.53878 4198.13309 3222.77347 4198.26538 3222.984 4198.35584 3223.08523 4202.23604 3226.96543 4202.32275 3227.0952 4202.3532 3227.24828 4202.3532 3228.921 4202.32346 3229.07237 4202.23864 3229.20122 4202.11138 3229.2884 4201.96059 3229.32093 4201.8087 3229.29399 4201.59735 3229.21211 4201.26901 3229.15074 4200.93499 3229.15074 4200.60665 3229.21211 4200.29518 3229.33278 4200.01118 3229.50862 4199.76433 3229.73365 4199.46594 3230.1346 4199.34096 3230.21199 4199.19646 3230.239 4198.97588 3230.239 Z \",\"M 4220.71392 3237.02578 L 4220.55524 3236.95225 4220.4431 3236.81804 4220.39894 3236.64882 4220.39326 3236.48619 4220.30694 3235.99669 4220.15335 3235.52396 4219.93545 3235.07721 4219.6575 3234.66514 4219.32491 3234.29576 4218.94415 3233.97626 4218.52262 3233.71286 4218.06854 3233.51069 4217.59074 3233.37368 4217.09853 3233.30451 4216.60147 3233.30451 4216.10926 3233.37368 4215.63146 3233.51069 4215.17738 3233.71286 4214.75585 3233.97626 4214.37509 3234.29576 4214.0425 3234.66514 4213.76455 3235.07721 4213.66622 3235.27882 4213.55516 3235.41695 4213.39532 3235.49353 4213.21808 3235.49353 4213.05824 3235.41695 4212.94718 3235.27882 4212.84885 3235.07721 4212.5709 3234.66514 4212.32566 3234.39277 4212.23866 3234.23624 4212.08977 3233.93721 4211.88847 3233.67065 4211.64162 3233.44562 4211.35762 3233.26978 4211.04615 3233.14911 4210.71781 3233.08774 4210.38379 3233.08774 4210.05545 3233.14911 4209.72405 3233.27749 4209.02266 3233.37368 4208.54486 3233.51069 4208.09078 3233.71286 4207.66925 3233.97626 4207.28849 3234.29576 4206.9559 3234.66514 4206.67795 3235.07721 4206.57962 3235.27882 4206.46856 3235.41695 4206.30872 3235.49353 4206.13148 3235.49353 4205.97164 3235.41695 4205.86058 3235.27882 4205.76225 3235.07721 4205.4843 3234.66514 4205.15171 3234.29576 4204.76323 3233.97144 4204.66288 3233.88213 4204.59776 3233.76464 4204.5752 3233.63222 4204.5752 3226.63362 4204.54673 3226.37532 4204.46461 3226.14063 4204.33232 3225.9301 4204.24186 3225.82887 4200.36166 3221.94867 4200.27495 3221.8189 4200.2445 3221.66582 4200.2445 3214.8393 4200.27858 3214.67773 4200.37502 3214.5437 4200.47117 3214.45605 4200.67247 3214.18949 4200.82136 3213.89048 4200.91277 3213.5692 4200.94359 3213.2366 4200.91277 3212.904 4200.82136 3212.58272 4200.67247 3212.28371 4200.52219 3212.08472 4200.46214 3211.97078 4200.4414 3211.84366 4200.4414 3200.8236 4200.47548 3200.66203 4200.57192 3200.528 4200.66807 3200.44035 4200.86937 3200.17379 4201.01826 3199.87478 4201.10967 3199.5535 4201.14049 3199.2209 4201.10967 3198.8883 4201.01826 3198.56702 4200.86937 3198.26801 4200.66807 3198.00145 4200.42122 3197.77642 4200.13722 3197.60058 4199.82575 3197.47991 4199.49741 3197.41854 4199.16339 3197.41854 4198.83505 3197.47991 4198.52358 3197.60058 4198.23958 3197.77642 4197.99273 3198.00145 4197.79143 3198.26801 4197.64254 3198.56702 4197.55169 3198.88634 4197.51943 3199.27739 4197.47898 3199.42255 4197.38769 3199.54244 4197.25853 3199.62005 4197.10982 3199.64436 4196.96266 3199.61193 4196.83795 3199.52735 4195.24356 3197.93297 4195.15685 3197.8032 4195.1264 3197.65012 4195.1264 3181.57908 4195.15685 3181.426 4195.24356 3181.29623 4195.57545 3180.96435 4195.71379 3180.8742 4195.87676 3180.84761 4196.03658 3180.88912 4196.16602 3180.99165 4196.24302 3181.13772 4196.26454 3181.21338 4196.41343 3181.51239 4196.61473 3181.77895 4196.86158 3182.00398 4197.14558 3182.17982 4197.45705 3182.30049 4197.78539 3182.36186 4198.11941 3182.36186 4198.44775 3182.30049 4198.75922 3182.17982 4199.04322 3182.00398 4199.29451 3181.7749 4199.4195 3181.69751 4199.56399 3181.6705 4212.89071 3181.6705 4213.05021 3181.70368 4213.18325 3181.7977 4213.26777 3181.93698 4213.28723 3182.1343 4213.3219 3182.63014 4213.42524 3183.11633 4213.59524 3183.58341 4213.8286 3184.02228 4214.12076 3184.42441 4214.46604 3184.78196 4214.85772 3185.08797 4215.28818 3185.3365 4215.74904 3185.5227 4216.23133 3185.64295 4216.72566 3185.6949 4217.22241 3185.67756 4217.71191 3185.59124 4218.18464 3185.43765 4218.63139 3185.21975 4219.04346 3184.9418 4219.40235 3184.61866 4219.53319 3184.54004 4219.68396 3184.51616 4219.83269 3184.5505 4219.95774 3184.63806 4220.04087 3184.76608 4220.07 3184.91592 4220.07 3204.54702 4220.03592 3204.70859 4219.93948 3204.84263 4219.84303 3204.93055 4219.64173 3205.19711 4219.49284 3205.49612 4219.40143 3205.8174 4219.37061 3206.15 4219.40143 3206.4826 4219.49284 3206.80388 4219.64173 3207.10289 4219.84303 3207.36945 4220.08988 3207.59448 4220.37388 3207.77032 4220.68535 3207.89099 4221.01369 3207.95236 4221.34771 3207.95236 4221.67605 3207.89099 4221.98752 3207.77032 4222.27152 3207.59448 4222.51837 3207.36945 4222.71967 3207.10289 4222.86856 3206.80388 4222.95997 3206.4826 4222.99079 3206.15 4222.95997 3205.8174 4222.86856 3205.49612 4222.71967 3205.19711 4222.51837 3204.93055 4222.42252 3204.84318 4222.32608 3204.70914 4222.292 3204.54757 4222.292 3179.39022 4222.26353 3179.13192 4222.18556 3178.90724 4222.15511 3178.75475 4222.18511 3178.60217 4222.27103 3178.47256 4222.39989 3178.38551 4222.5522 3178.35418 4222.70495 3178.3833 4222.83564 3178.4361 4223.31793 3178.55635 4223.81226 3178.6083 4224.30901 3178.59096 4224.79851 3178.50464 4225.27124 3178.35105 4225.71799 3178.13315 4226.13006 3177.8552 4226.49944 3177.52261 4226.81894 3177.14185 4227.08234 3176.72032 4227.28451 3176.26624 4227.42152 3175.78844 4227.49069 3175.29623 4227.49069 3174.79917 4227.42152 3174.30696 4227.28451 3173.82916 4227.08234 3173.37508 4226.81894 3172.95355 4226.49944 3172.57279 4226.13006 3172.2402 4225.71799 3171.96225 4225.27124 3171.74435 4224.79851 3171.59076 4224.30901 3171.50444 4223.81226 3171.4871 4223.31793 3171.53905 4222.83564 3171.6593 4222.37478 3171.8455 4221.94432 3172.09403 4221.55264 3172.40004 4221.20736 3172.75759 4220.9152 3173.15972 4220.74761 3173.4749 4220.6318 3173.60907 4220.46938 3173.68003 4220.29225 3173.67384 4220.13518 3173.59173 4220.02901 3173.44981 4219.99574 3173.37508 4219.73234 3172.95355 4219.41284 3172.57279 4219.04346 3172.2402 4218.63139 3171.96225 4218.18464 3171.74435 4218.07702 3171.70939 4217.93356 3171.62675 4217.83585 3171.4931 4217.80063 3171.33133 4217.83393 3171.16916 4217.93005 3171.03436 4218.07252 3170.95003 4218.63096 3170.76124 4219.18054 3170.49944 4219.69529 3170.17447 4220.16799 3169.79091 4220.59201 3169.35413 4220.96094 3168.87088 4221.29106 3168.30701 4221.39206 3168.1923 4221.5287 3168.12384 4221.68104 3168.11163 4222.00668 3168.14872 4223.70641 3168.41834 4225.39233 3168.76395 4227.06105 3169.18484 4228.7092 3169.68018 4230.33347 3170.24896 4231.93059 3170.89005 4233.49733 3171.60214 4235.03056 3172.38381 4236.52716 3173.23347 4237.98414 3174.14943 4239.39856 3175.12983 4240.76757 3176.17271 4242.08842 3177.27595 4243.35843 3178.43734 4244.57506 3179.65454 4245.73586 3180.9251 4246.83848 3182.24646 4247.88072 3183.61596 4248.86046 3185.03084 4249.77573 3186.48825 4250.6247 3187.98525 4251.40565 3189.51884 4252.11701 3191.08592 4252.75734 3192.68334 4253.32537 3194.30787 4253.81993 3195.95626 4254.24005 3197.62517 4254.58486 3199.31125 4254.85369 3201.01111 4254.84404 3201.19792 4254.77227 3201.33667 4254.65283 3201.43734 4254.25727 3201.65542 4253.76267 3202.0103 4253.31352 3202.42119 4252.91612 3202.88232 4252.57605 3203.38722 4252.29808 3203.92879 4252.08611 3204.49944 4251.94313 3205.09116 4251.87848 3205.63394 4251.82831 3205.78555 4251.72283 3205.90546 4251.57885 3205.97454 4251.41932 3205.9818 4251.26967 3205.92607 4251.15374 3205.81623 4251.09002 3205.66979 4250.98336 3205.16797 4250.81336 3204.70089 4250.58 3204.26202 4250.28784 3203.85989 4249.94256 3203.50234 4249.55088 3203.19633 4249.12042 3202.9478 4248.65956 3202.7616 4248.17727 3202.64135 4247.68294 3202.5894 4247.18619 3202.60674 4246.69669 3202.69306 4246.22396 3202.84665 4245.77721 3203.06455 4245.36514 3203.3425 4244.99576 3203.67509 4244.67626 3204.05585 4244.41286 3204.47738 4244.37959 3204.55211 4244.27342 3204.69403 4244.11635 3204.77614 4243.93922 3204.78233 4243.7768 3204.71137 4243.66099 3204.5772 4243.4934 3204.26202 4243.20124 3203.85989 4242.85596 3203.50234 4242.46428 3203.19633 4242.03382 3202.9478 4241.57296 3202.7616 4241.09067 3202.64135 4240.59634 3202.5894 4240.09959 3202.60674 4239.61009 3202.69306 4239.13736 3202.84665 4238.69061 3203.06455 4238.27854 3203.3425 4237.90916 3203.67509 4237.58966 3204.05585 4237.32626 3204.47738 4237.29299 3204.55211 4237.18682 3204.69403 4237.02975 3204.77614 4236.85262 3204.78233 4236.6902 3204.71137 4236.57439 3204.5772 4236.4068 3204.26202 4236.11464 3203.85989 4235.76936 3203.50234 4235.37768 3203.19633 4234.94722 3202.9478 4234.48636 3202.7616 4234.00407 3202.64135 4233.50974 3202.5894 4233.01299 3202.60674 4232.52349 3202.69306 4232.05076 3202.84665 4231.60401 3203.06455 4231.19194 3203.3425 4230.82256 3203.67509 4230.50306 3204.05585 4230.23966 3204.47738 4230.03749 3204.93146 4229.90048 3205.40926 4229.83131 3205.90147 4229.83131 3206.39853 4229.90048 3206.89074 4230.03749 3207.36854 4230.23966 3207.82262 4230.50306 3208.24415 4230.56829 3208.32188 4230.64157 3208.45318 4230.66119 3208.60226 4230.62439 3208.74805 4230.53637 3208.86995 4230.40955 3208.95074 4230.26187 3208.979 4212.53122 3208.979 4212.27292 3209.00747 4212.03823 3209.08959 4211.8277 3209.22188 4211.72647 3209.31234 4209.77234 3211.26647 4209.60982 3211.46925 4209.50194 3211.69327 4209.44661 3211.93568 4209.439 3212.07122 4209.439 3215.96533 4209.40492 3216.1269 4209.30848 3216.26093 4209.21313 3216.34785 4209.01183 3216.61441 4208.86294 3216.91342 4208.77153 3217.2347 4208.74071 3217.5673 4208.77153 3217.8999 4208.86294 3218.22118 4209.01183 3218.52019 4209.15079 3218.7042 4209.22232 3218.85968 4209.22232 3219.03082 4209.15079 3219.1863 4209.01183 3219.37031 4208.86294 3219.66932 4208.77153 3219.9906 4208.73882 3220.34366 4208.69721 3220.48779 4208.60542 3220.60647 4208.47637 3220.68297 4208.32821 3220.70656 4208.18178 3220.6739 4208.05768 3220.58959 4206.66086 3219.19277 4206.57415 3219.063 4206.5437 3218.90992 4206.5437 3201.8472 4206.57778 3201.68563 4206.67422 3201.5516 4206.77037 3201.46395 4206.97167 3201.19739 4207.12056 3200.89838 4207.21197 3200.5771 4207.24279 3200.2445 4207.21197 3199.9119 4207.12056 3199.59062 4206.97167 3199.29161 4206.77037 3199.02505 4206.52352 3198.80002 4206.23952 3198.62418 4205.92805 3198.50351 4205.59971 3198.44214 4205.26569 3198.44214 4204.93735 3198.50351 4204.62588 3198.62418 4204.34188 3198.80002 4204.09503 3199.02505 4203.89373 3199.29161 4203.74484 3199.59062 4203.65343 3199.9119 4203.62261 3200.2445 4203.65343 3200.5771 4203.74484 3200.89838 4203.89373 3201.19739 4204.09503 3201.46395 4204.19118 3201.5516 4204.28762 3201.68563 4204.3217 3201.8472 4204.3217 3219.52458 4204.35017 3219.78288 4204.43229 3220.01757 4204.56458 3220.2281 4204.65504 3220.32933 4208.18247 3223.85676 4208.38525 3224.01928 4208.60927 3224.12716 4208.84799 3224.18186 4208.94901 3224.18565 4209.08548 3224.21515 4209.2035 3224.28977 4209.45998 3224.52358 4209.74398 3224.69942 4210.05545 3224.82009 4210.38379 3224.88146 4210.71781 3224.88146 4211.04615 3224.82009 4211.35762 3224.69942 4211.64162 3224.52358 4211.88847 3224.29855 4212.08977 3224.03199 4212.23866 3223.73298 4212.33007 3223.4117 4212.36089 3223.0791 4212.33007 3222.7465 4212.23866 3222.42522 4212.08977 3222.12621 4211.95081 3221.9422 4211.87928 3221.78672 4211.87928 3221.61558 4211.95081 3221.4601 4212.08977 3221.27609 4212.19424 3221.06628 4212.26946 3220.96173 4213.68766 3219.54353 4213.85018 3219.34075 4213.95806 3219.11673 4214.0131 3218.87604 4214.02145 3218.69992 4214.06708 3218.53249 4214.17932 3218.40014 4214.33706 3218.32778 4214.51059 3218.32904 4214.66726 3218.40367 4214.85772 3218.55247 4215.27899 3218.79569 4215.40259 3218.90699 4215.47025 3219.05894 4215.47025 3219.22526 4215.40259 3219.37721 4215.27899 3219.48851 4214.85772 3219.73173 4214.46604 3220.03774 4214.12076 3220.39529 4213.8286 3220.79742 4213.59524 3221.23629 4213.42524 3221.70337 4213.3219 3222.18956 4213.28723 3222.6854 4213.3219 3223.18124 4213.42524 3223.66743 4213.59524 3224.13451 4213.8286 3224.57338 4214.12076 3224.97551 4214.46604 3225.33306 4214.85772 3225.63907 4215.28818 3225.8876 4215.74904 3226.0738 4216.23133 3226.19405 4216.72566 3226.246 4217.22241 3226.22866 4217.71191 3226.14234 4218.18464 3225.98875 4218.63139 3225.77085 4219.04346 3225.4929 4219.41284 3225.16031 4219.73234 3224.77955 4219.99574 3224.35802 4220.19791 3223.90394 4220.33492 3223.42614 4220.40409 3222.93393 4220.40409 3222.43687 4220.33492 3221.94466 4220.19791 3221.46686 4219.99574 3221.01278 4219.73234 3220.59125 4219.41284 3220.21049 4219.04346 3219.8779 4218.63139 3219.59995 4218.42978 3219.50162 4218.29165 3219.39056 4218.21507 3219.23072 4218.21507 3219.05348 4218.29165 3218.89364 4218.42978 3218.78258 4218.63139 3218.68425 4219.06452 3218.38734 4219.18883 3218.31117 4219.33217 3218.2846 4224.87281 3218.2846 4225.04446 3218.3233 4225.18289 3218.43192 4225.26132 3218.58943 4225.26457 3218.76535 4225.19202 3218.92565 4225.15353 3218.97661 4225.00464 3219.27562 4224.91323 3219.5969 4224.88535 3219.96116 4224.86328 3220.13391 4224.7699 3220.28091 4221.97784 3223.07297 4221.81532 3223.27575 4221.70744 3223.49977 4221.65211 3223.74218 4221.6445 3223.87772 4221.6445 3236.0433 4221.61042 3236.20487 4221.51398 3236.3389 4221.41783 3236.42655 4221.21653 3236.69311 4221.15676 3236.81316 4221.04646 3236.94889 4220.88881 3237.02458 4220.71392 3237.02578 Z \"]]~0~gge30385~2~1~2~1~yes~0",
28 | "PAD~ELLIPSE~4233.385~3206.15~5.9055~5.9055~2~A12~35~0~~0~gge89318~0~~Y~0~0~0.2~4233.3854,3206.15",
29 | "PAD~ELLIPSE~4209.763~3175.048~5.9055~5.9055~2~A13~35~0~~180~gge89291~0~~Y~0~0~0.2~4209.7634,3175.0477",
30 | "PAD~ELLIPSE~4240.472~3206.15~5.9055~5.9055~2~A6~35~0~~0~gge88976~0~~Y~0~0~0.2~4240.472,3206.15",
31 | "PAD~ELLIPSE~4247.559~3206.15~5.9055~5.9055~2~A7~35~0~~0~gge88973~0~~Y~0~0~0.2~4247.5586,3206.15",
32 | "PAD~ELLIPSE~4247.559~3213.237~5.9055~5.9055~2~A8~35~0~~0~gge88970~0~~Y~0~0~0.2~4247.5586,3213.2366",
33 | "PAD~ELLIPSE~4202.677~3236.859~5.9055~5.9055~2~A11~35~0~~270~gge88889~0~~Y~0~0~0.2~4202.6768,3236.8586",
34 | "PAD~ELLIPSE~4216.85~3222.685~5.9055~5.9055~2~VCC~35~0~~180~gge88853~0~~Y~0~0~0.2~4216.85,3222.6854",
35 | "PAD~ELLIPSE~4209.763~3236.859~5.9055~5.9055~2~A10~35~0~~270~gge88823~0~~Y~0~0~0.2~4209.7634,3236.8586",
36 | "PAD~ELLIPSE~4216.85~3236.859~5.9055~5.9055~2~A9~35~0~~270~gge88820~0~~Y~0~0~0.2~4216.85,3236.8586",
37 | "PAD~ELLIPSE~4216.85~3229.772~5.9055~5.9055~2~GND~35~0~~270~gge88817~0~~Y~0~0~0.2~4216.85,3229.772",
38 | "PAD~ELLIPSE~4186.141~3199.063~5.9055~5.9055~2~A2~35~0~~270~gge88619~0~~Y~0~0~0.2~4186.1414,3199.0634",
39 | "PAD~ELLIPSE~4186.141~3206.15~5.9055~5.9055~2~A1~35~0~~270~gge88583~0~~Y~0~0~0.2~4186.1414,3206.15",
40 | "PAD~ELLIPSE~4193.228~3206.15~5.9055~5.9055~2~A0~35~0~~270~gge88580~0~~Y~0~0~0.2~4193.228,3206.15",
41 | "PAD~ELLIPSE~4216.85~3182.134~5.9055~5.9055~2~A3~35~0~~180~gge88505~0~~Y~0~0~0.2~4216.85,3182.1343",
42 | "PAD~ELLIPSE~4216.85~3175.048~5.9055~5.9055~2~A4~35~0~~180~gge88445~0~~Y~0~0~0.2~4216.85,3175.0477",
43 | "PAD~ELLIPSE~4223.937~3175.048~5.9055~5.9055~2~A5~35~0~~180~gge88418~0~~Y~0~0~0.2~4223.9366,3175.0477",
44 | "PAD~ELLIPSE~4216.85~3215.599~5.9055~5.9055~2~DF~35~0~~180~gge88172~0~~Y~0~0~0.2~4216.85,3215.5988",
45 | "CIRCLE~4216.85~3206.15~39.37~1~10~gge7~0~~circle_gge10,circle_gge13",
46 | "TRACK~1~1~DF~4234.5739 3191.8428 4234.5739 3201.0393 4235.3539 3201.8193 4242.0468 3201.8193 4245.1964 3204.9689 4245.1964 3215.5988 4243.6216 3217.1736~gge229797~0",
47 | "TRACK~1~1~OUT~4236.68 3220.06 4243.62 3213.12 4243.62 3205.7547 4241.2594 3203.3941 4233.3854 3203.3941 4230.6295 3200.6382 4225.91 3200.6382 4224.33 3199.06 4224.33 3189.22 4226.82 3186.73 4227.48 3186.73~gge229794~0",
48 | "TRACK~1~1~RESET~4210.5508 3223.0791 4210.5508 3228.5909 4206.6138 3232.5279 4206.6138 3237.646 4209.3697 3240.4019 4219.9996 3240.4019 4222.7555 3237.646~gge229719~0",
49 | "TRACK~1~1~CLK~4193.23 3232.92 4193.23 3233.32 4202.28 3233.32 4205.66 3229.94 4205.66 3225.84~gge229716~0",
50 | "TRACK~1~1~GND~4214.4879 3196.4024 4211.8268 3196.4024 4210.5508 3195.1264 4208.5823 3195.1264 4206.2201 3192.7642 4204.2518 3192.7642~gge229689~0",
51 | "TRACK~1~1~GND~4205.9221 3210.6837 4205.9221 3211.9598 4203.4642 3214.4177 4203.4642 3216.3862 4201.1033 3218.7471 4201.1033 3220.9202~gge229686~0",
52 | "TRACK~1~1~A5~4202.6768 3172.2918 4221.5744 3172.2918 4223.9366 3174.654~gge229602~0",
53 | "TRACK~1~1~A5~4194.8028 3215.5988 4195.2022 3215.9982 4196.5463 3215.9982~gge229572~0",
54 | "TRACK~1~1~A4~4196.5464 3217.9673 4192.0532 3217.9673 4190.0786 3215.9924 4190.0786 3214.8113 4194.8027 3210.0869 4194.8027 3208.5122 4197.5586 3205.7563 4220.7873 3205.7563 4221.181 3206.15~gge229503~0",
55 | "TRACK~1~1~A6~4196.55 3219.94 4191.27 3219.94 4188.11 3216.78 4188.11 3214.02 4192.83 3209.3 4192.83 3207.72 4196.77 3203.79 4226.69 3203.79 4231.42 3208.51 4238.11 3208.51 4240.47 3206.15~gge229476~0",
56 | "TRACK~1~1~A3~4196.5464 3221.9043 4190.4785 3221.9043 4186.1416 3217.5674 4186.1416 3213.6304 4190.8657 3208.906 4190.8657 3197.095 4194.0156 3193.9453 4194.0156 3184.4964 4197.952 3180.56~gge229446~0",
57 | "TRACK~1~1~A11~4199.3304 3199.2209 4199.3308 3197.3212~gge229428~0",
58 | "TRACK~1~1~RESET~4201.3 3197.32 4201.3 3198.47 4203.07 3200.25 4205.43 3200.25~gge229425~0",
59 | "TRACK~1~1~A12~4197.73 3193.75 4197.17 3193.75 4197.17 3200.24 4199.05 3202.13 4229.37 3202.13 4233.38 3206.15~gge229266~0",
60 | "TRACK~1~1~A2~4196.55 3223.87 4189.69 3223.87 4184.17 3218.35 4184.17 3212.84 4188.11 3208.91 4188.11 3203 4186.54 3201.43~gge228762~0",
61 | "TRACK~1~1~A1~4196.5463 3225.8412 4189.2972 3225.8412 4182.5981 3219.1421 4182.5981 3211.2681 4185.7477 3208.1185~gge229371~0",
62 | "TRACK~1~1~A13~4199.3306 3188.2073 4199.3306 3183.1184 4207.401 3175.048~gge229341~0",
63 | "TRACK~1~1~RESET~4205.66 3223.87 4207.4 3223.87 4208.19 3223.08 4210.55 3223.08~gge229185~0",
64 | "TRACK~1~1~A8~4205.6602 3221.9043 4207.395 3221.9043 4208.9763 3220.323 4210.551 3220.323~gge229155~0",
65 | "TRACK~1~1~A7~4205.66 3219.94 4207 3219.94 4209.37 3217.57 4210.55 3217.57~gge229092~0",
66 | "TRACK~1~1~A9~4205.6603 3217.9672 4206.6076 3217.9672 4209.3697 3215.2051 4212.1256 3215.2051 4212.913 3215.9925 4212.913 3228.9846 4208.5823 3233.3153 4208.5823 3236.8586 4210.1571 3238.4334 4214.4878 3238.4334 4215.6689 3237.2523~gge229086~0",
67 | "TRACK~1~1~A10~4205.6603 3215.9982 4205.6603 3214.5838 4206.6138 3213.6303 4212.913 3213.6303 4214.4878 3215.2051 4214.4878 3230.9531 4210.5508 3234.8901~gge229083~0",
68 | "TRACK~1~1~GND~4216.85 3229.772 4218.8185 3229.772 4223.9366 3234.8901 4231.8594 3234.8901 4236.682 3230.0675~gge228840~0",
69 | "TRACK~1~1~VCC~4216.85 3222.685 4219.2995 3222.685 4226.682 3230.0675~gge228813~0",
70 | "TRACK~1~1~GND~4199.13 3228.2 4199.92 3228.2 4199.92 3225.64 4201.1 3224.46 4201.1 3220.92~gge228687~0",
71 | "TRACK~1~1~A0~4202.0874 3227.4453 4202.0874 3229.9676 4201.102 3230.953~gge228690~0",
72 | "TRACK~1~1~VCC3~4202.0873 3214.3942 4202.0873 3212.0555 4202.5821 3211.5607 4202.5821 3210.6837~gge228684~0",
73 | "TRACK~1~1~GND~4197.7258 3191.7802 4199.5272 3191.7802 4200.5112 3192.7642 4204.2518 3192.7642~gge228681~0",
74 | "TRACK~1~1~VCC2~4210.7768 3193.7482 4212.913 3193.7482 4213.5988 3193.0624 4214.4879 3193.0624~gge228678~0",
75 | "TRACK~1~1~GND~4238.5039 3191.8428 4238.5039 3193.1583 4240.8182 3195.4726 4240.8182 3196.67~gge228675~0",
76 | "TRACK~1~1~GND~4237.5239 3186.3328 4238.5039 3187.3128 4238.5039 3191.8428~gge228672~0",
77 | "TRACK~1~1~GND~4238.5 3180.82 4238.5 3183.71 4237.52 3184.69 4237.52 3186.33~gge228669~0",
78 | "TRACK~1~1~GND~4236.5439 3180.8228 4238.5039 3180.8228~gge228666~0",
79 | "TRACK~1~1~GND~4237.5239 3186.3328 4236.5439 3185.3528 4236.5439 3180.8228~gge228657~0",
80 | "TRACK~1~1~VCC1~4236.5439 3191.8428 4236.5439 3194.339 4237.4782 3195.2733 4237.4782 3196.67~gge228636~0",
81 | "TRACK~1~1~I-~4227.4799 3190.1375 4227.3507 3190.2667 4227.3507 3196.3075~gge228633~0",
82 | "TRACK~1~1~I-~4227.4799 3190.1375 4228.3346 3189.2828 4232.0139 3189.2828~gge228630~0",
83 | "TRACK~1~1~OUT~4227.4799 3186.7295 4228.0632 3187.3128 4232.0139 3187.3128~gge228627~0",
84 | "COPPERAREA~1~1~VCC~M 4112 3101.5 L 4278.5 3101.5 L 4340.5 3163.5 L 4340.5 3294.5 L 4314.5 3320.5 L 4111.5 3320.5 L 4108.5 3317.5 L4108.5,3115.5 L4106.5,3113.5 Z~0.606~solid~gge30385~direct~none~[[\"M 4223.68867 3243.88488 L 4221.99915 3244.15213 4221.84111 3244.14546 4221.69801 3244.07806 4221.59223 3243.96045 4221.27384 3243.42135 4220.90338 3242.93608 4220.47812 3242.49802 4220.10485 3242.19514 4219.99727 3242.05969 4219.95695 3241.89148 4219.99141 3241.72197 4220.09422 3241.58286 4220.24615 3241.50017 4220.48788 3241.41582 4220.70126 3241.28175 4220.80374 3241.19017 4222.41345 3239.58046 4222.54322 3239.49375 4222.69629 3239.4633 4222.9239 3239.4633 4223.25496 3239.40141 4223.56901 3239.27975 4223.85536 3239.10245 4224.10426 3238.87555 4224.30722 3238.60678 4224.45734 3238.3053 4224.54951 3237.98136 4224.58059 3237.646 4224.54951 3237.31064 4224.45734 3236.9867 4224.30722 3236.68522 4224.21347 3236.49685 4224.21672 3236.32093 4224.29515 3236.16342 4224.43359 3236.0548 4224.60524 3236.0161 4231.84818 3236.0161 4232.10982 3235.98725 4232.34768 3235.90402 4232.56106 3235.76995 4232.66354 3235.67837 4234.14443 3234.19748 4234.28784 3234.10541 4234.45657 3234.08139 4234.61997 3234.1298 4234.73951 3234.19551 4235.2722 3234.40642 4235.82713 3234.5489 4236.39554 3234.62071 4236.96846 3234.62071 4237.53687 3234.5489 4238.0918 3234.40642 4238.62449 3234.19551 4239.12655 3233.9195 4239.59006 3233.58274 4240.00771 3233.19055 4240.3729 3232.7491 4240.67989 3232.26536 4240.92383 3231.74696 4241.10088 3231.20208 4241.20823 3230.6393 4241.24421 3230.0675 4241.20823 3229.4957 4241.10088 3228.93292 4240.92383 3228.38804 4240.67989 3227.86964 4240.3729 3227.3859 4240.00771 3226.94445 4239.59006 3226.55226 4239.12655 3226.2155 4238.62449 3225.93949 4238.0918 3225.72858 4237.53687 3225.5861 4236.96846 3225.51429 4236.39554 3225.51429 4235.82713 3225.5861 4235.2722 3225.72858 4234.73951 3225.93949 4234.23745 3226.2155 4233.77394 3226.55226 4233.35629 3226.94445 4232.9911 3227.3859 4232.68411 3227.86964 4232.44017 3228.38804 4232.26312 3228.93292 4232.15577 3229.4957 4232.11979 3230.0675 4232.15577 3230.6393 4232.26312 3231.20208 4232.44017 3231.74696 4232.63085 3232.15218 4232.66872 3232.30993 4232.64083 3232.46974 4232.55176 3232.60534 4231.51015 3233.64694 4231.38038 3233.73365 4231.22731 3233.7641 4224.56869 3233.7641 4224.41562 3233.73365 4224.28585 3233.64694 4219.62264 3228.98373 4219.41723 3228.81912 4219.19019 3228.70978 4218.9445 3228.65371 4218.80728 3228.646 4218.46731 3228.646 4218.32281 3228.61899 4218.19783 3228.5416 4217.94986 3228.31555 4217.66351 3228.13825 4217.34946 3228.01659 4217.0184 3227.9547 4216.6816 3227.9547 4216.35054 3228.01659 4216.1583 3228.09106 4216.00641 3228.118 4215.85562 3228.08547 4215.72836 3227.99829 4215.64354 3227.86944 4215.6138 3227.71807 4215.6138 3215.21632 4215.58495 3214.95468 4215.50172 3214.71682 4215.36765 3214.50344 4215.27607 3214.40096 4213.71714 3212.84203 4213.51173 3212.67742 4213.28469 3212.56808 4213.039 3212.51201 4212.90178 3212.5043 4209.25094 3212.5043 4209.07929 3212.4656 4208.94085 3212.35698 4208.86242 3212.19947 4208.85917 3212.02355 4209.10304 3211.5337 4209.19521 3211.20976 4209.22629 3210.8744 4209.19521 3210.53904 4209.10304 3210.2151 4208.95292 3209.91362 4208.74996 3209.64485 4208.50106 3209.41795 4208.21471 3209.24065 4207.90066 3209.11899 4207.77316 3209.09515 4207.64896 3209.04969 4207.41467 3208.86516 4207.26453 3208.80296 4207.07718 3208.7783 4204.76762 3208.7783 4204.58027 3208.80296 4204.40547 3208.87537 4204.27301 3208.90529 4204.13818 3208.88916 4204.01651 3208.82886 4203.87484 3208.72541 4203.72023 3208.66136 4203.53288 3208.6367 4202.58532 3208.6367 4202.39927 3208.66119 4202.19614 3208.74686 4202.0407 3208.7783 4201.42762 3208.7783 4201.24027 3208.80296 4201.09013 3208.86516 4200.96119 3208.96409 4200.86226 3209.09303 4200.80006 3209.24317 4200.7754 3209.43052 4200.7754 3211.39763 4200.73981 3211.56257 4200.63937 3211.69816 4200.49196 3211.78027 4200.3238 3211.79429 4200.16483 3211.73772 4199.94701 3211.60285 4199.63296 3211.48119 4199.3019 3211.4193 4198.9651 3211.4193 4198.63404 3211.48119 4198.31999 3211.60285 4198.03364 3211.78015 4197.78474 3212.00705 4197.58178 3212.27582 4197.43166 3212.5773 4197.33949 3212.90124 4197.30841 3213.2366 4197.33949 3213.57196 4197.43128 3213.89458 4197.60656 3214.24068 4197.64897 3214.39707 4197.62586 3214.55745 4197.54102 3214.69551 4197.40838 3214.78858 4197.24971 3214.8214 4196.69218 3214.8214 4196.57092 3214.80258 4196.46107 3214.74788 4196.37297 3214.66245 4196.15156 3214.36925 4195.90266 3214.14235 4195.61631 3213.96505 4195.30226 3213.84339 4194.9712 3213.7815 4194.6344 3213.7815 4194.30334 3213.84339 4193.98929 3213.96505 4193.70294 3214.14235 4193.45404 3214.36925 4193.25108 3214.63802 4193.10096 3214.9395 4193.00879 3215.26344 4192.97771 3215.5988 4193.00879 3215.93416 4193.14472 3216.41914 4193.12093 3216.57888 4193.03591 3216.71619 4192.90352 3216.80869 4192.68536 3216.8413 4192.53227 3216.81085 4192.40249 3216.72412 4191.36322 3215.68469 4191.27653 3215.55493 4191.24609 3215.40186 4191.27653 3215.2488 4191.36324 3215.11904 4195.59099 3210.89101 4195.7556 3210.6856 4195.86493 3210.45855 4195.921 3210.21286 4195.9287 3210.07568 4195.9287 3209.14429 4195.95915 3208.99122 4196.04586 3208.86145 4197.90785 3206.99946 4198.03762 3206.91275 4198.19069 3206.8823 4219.26754 3206.8823 4219.41204 3206.90931 4219.53702 3206.9867 4219.83194 3207.37955 4220.08084 3207.60645 4220.36719 3207.78375 4220.68124 3207.90541 4221.0123 3207.9673 4221.3491 3207.9673 4221.68016 3207.90541 4221.99421 3207.78375 4222.28056 3207.60645 4222.52946 3207.37955 4222.73242 3207.11078 4222.88254 3206.8093 4222.97471 3206.48536 4223.00579 3206.15 4222.97471 3205.81464 4222.84284 3205.33487 4222.86766 3205.1761 4222.95296 3205.03991 4223.08497 3204.94828 4223.2424 3204.916 4226.05886 3204.916 4226.21173 3204.94637 4226.3414 3205.03286 4230.61677 3209.29919 4230.82246 3209.46362 4231.04964 3209.57268 4231.29539 3209.62845 4231.43112 3209.636 4238.09878 3209.636 4238.36042 3209.60715 4238.59828 3209.52392 4238.81166 3209.38985 4238.91414 3209.29827 4240.12795 3208.08446 4240.25772 3207.99775 4240.41079 3207.9673 4240.6404 3207.9673 4240.97146 3207.90541 4241.28551 3207.78375 4241.57186 3207.60645 4241.82452 3207.37612 4241.95526 3207.29655 4242.10632 3207.27191 4242.25557 3207.3058 4242.38116 3207.39327 4242.46472 3207.5215 4242.494 3207.67172 4242.494 3212.48791 4242.46355 3212.64098 4242.37684 3212.77075 4239.21631 3215.93128 4239.0729 3216.02335 4238.90418 3216.04737 4238.74077 3215.99896 4238.62349 3215.93449 4238.0908 3215.72358 4237.53587 3215.5811 4236.96746 3215.50929 4236.39454 3215.50929 4235.82613 3215.5811 4235.2712 3215.72358 4234.73851 3215.93449 4234.23645 3216.2105 4233.77294 3216.54726 4233.35529 3216.93945 4232.9901 3217.3809 4232.68311 3217.86464 4232.43917 3218.38304 4232.26212 3218.92792 4232.15477 3219.4907 4232.11879 3220.0625 4232.15477 3220.6343 4232.26212 3221.19708 4232.43917 3221.74196 4232.68311 3222.26036 4232.9901 3222.7441 4233.35529 3223.18555 4233.77294 3223.57774 4234.23645 3223.9145 4234.73851 3224.19051 4235.2712 3224.40142 4235.82613 3224.5439 4236.39454 3224.61571 4236.96746 3224.61571 4237.53587 3224.5439 4238.0908 3224.40142 4238.62349 3224.19051 4239.12555 3223.9145 4239.58906 3223.57774 4240.00671 3223.18555 4240.3719 3222.7441 4240.67889 3222.26036 4240.92283 3221.74196 4241.09988 3221.19708 4241.20723 3220.6343 4241.24321 3220.0625 4241.20723 3219.4907 4241.09988 3218.92792 4240.92283 3218.38304 4240.73103 3217.97544 4240.69316 3217.81769 4240.72105 3217.65788 4240.81012 3217.52228 4241.13992 3217.19249 4241.26401 3217.10818 4241.41044 3217.07552 4241.5586 3217.0991 4241.68765 3217.17561 4241.77944 3217.29428 4241.82759 3217.50896 4241.91976 3217.8329 4242.06988 3218.13438 4242.27284 3218.40315 4242.52174 3218.63005 4242.80809 3218.80735 4243.12214 3218.92901 4243.4532 3218.9909 4243.79 3218.9909 4244.12106 3218.92901 4244.43511 3218.80735 4244.72146 3218.63005 4244.97036 3218.40315 4245.17332 3218.13438 4245.32344 3217.8329 4245.41561 3217.50896 4245.44428 3217.14762 4245.46635 3216.97487 4245.55973 3216.82787 4245.98467 3216.40294 4246.14928 3216.19753 4246.25862 3215.97049 4246.31469 3215.7248 4246.3224 3215.58758 4246.3224 3204.98012 4246.29355 3204.71848 4246.21032 3204.48062 4246.07625 3204.26724 4245.98467 3204.16476 4242.85094 3201.03103 4242.64553 3200.86642 4242.41849 3200.75708 4242.1728 3200.70101 4242.03558 3200.6933 4236.0999 3200.6933 4235.94683 3200.66285 4235.81706 3200.57614 4235.73035 3200.44637 4235.6999 3200.2933 4235.6999 3198.94959 4235.73555 3198.7845 4235.83616 3198.64885 4235.98379 3198.56681 4236.15211 3198.55301 4236.22289 3198.56233 4236.37068 3198.61249 4236.61743 3198.81494 4236.76757 3198.87714 4236.95492 3198.9018 4237.90248 3198.9018 4238.08983 3198.87714 4238.23997 3198.81494 4238.48397 3198.62234 4238.62331 3198.57691 4238.82063 3198.55094 4238.99543 3198.47853 4239.1485 3198.44808 4239.30157 3198.47853 4239.47637 3198.55094 4239.66372 3198.5756 4241.97328 3198.5756 4242.16063 3198.55094 4242.29947 3198.50275 4242.54626 3198.45661 4242.86031 3198.33495 4243.14666 3198.15765 4243.39556 3197.93075 4243.59852 3197.66198 4243.74864 3197.3605 4243.84081 3197.03656 4243.87189 3196.7012 4243.84081 3196.36584 4243.74864 3196.0419 4243.59852 3195.74042 4243.39556 3195.47165 4243.14666 3195.24475 4242.86031 3195.06745 4242.54626 3194.94579 4242.40205 3194.90766 4242.31077 3194.85146 4242.16063 3194.78926 4241.97328 3194.7646 4241.86829 3194.7646 4241.71522 3194.73415 4241.58545 3194.64744 4241.24739 3194.30938 4241.16068 3194.17961 4241.13023 3194.02654 4241.16068 3193.87347 4241.24739 3193.7437 4241.39229 3193.59879 4241.53224 3193.37607 4241.61912 3193.12779 4241.6511 3192.84394 4241.6511 3190.86 4241.68155 3190.70693 4241.76826 3190.57716 4241.89803 3190.49045 4242.0511 3190.46 4244.03504 3190.46 4244.31889 3190.42802 4244.56717 3190.34114 4244.78989 3190.20119 4244.97589 3190.01519 4245.11584 3189.79247 4245.20272 3189.54419 4245.23217 3189.2828 4245.20272 3189.02141 4245.11551 3188.7722 4244.95088 3188.50733 4244.89734 3188.36925 4244.8977 3188.22116 4244.95191 3188.08336 4245.11584 3187.82247 4245.20272 3187.57419 4245.23217 3187.3128 4245.20272 3187.05141 4245.11584 3186.80313 4244.95403 3186.54561 4244.89969 3186.40716 4244.89969 3186.25844 4244.95403 3186.11999 4245.11584 3185.86247 4245.20272 3185.61419 4245.23217 3185.3528 4245.20272 3185.09141 4245.11551 3184.8422 4244.95088 3184.57733 4244.89734 3184.43925 4244.8977 3184.29116 4244.95191 3184.15336 4245.11584 3183.89247 4245.20272 3183.64419 4245.23217 3183.3828 4245.20272 3183.12141 4245.11584 3182.87313 4244.97589 3182.65041 4244.78989 3182.46441 4244.56717 3182.32446 4244.31889 3182.23758 4244.03504 3182.2056 4242.0511 3182.2056 4241.89803 3182.17515 4241.76826 3182.08844 4241.68155 3181.95867 4241.6511 3181.8056 4241.6511 3179.82166 4241.61912 3179.53781 4241.53224 3179.28953 4241.39229 3179.06681 4241.20629 3178.88081 4240.98357 3178.74086 4240.73529 3178.65398 4240.4739 3178.62453 4240.21251 3178.65398 4239.9633 3178.74119 4239.69843 3178.90582 4239.56035 3178.95936 4239.41226 3178.959 4239.27446 3178.90479 4239.01357 3178.74086 4238.76529 3178.65398 4238.5039 3178.62453 4238.24251 3178.65398 4237.99423 3178.74086 4237.73671 3178.90267 4237.59826 3178.95701 4237.44954 3178.95701 4237.31109 3178.90267 4237.05357 3178.74086 4236.80529 3178.65398 4236.5439 3178.62453 4236.28251 3178.65398 4236.0333 3178.74119 4235.76843 3178.90582 4235.63035 3178.95936 4235.48226 3178.959 4235.34446 3178.90479 4235.08357 3178.74086 4234.83529 3178.65398 4234.5739 3178.62453 4234.31251 3178.65398 4234.06423 3178.74086 4233.84151 3178.88081 4233.65551 3179.06681 4233.51556 3179.28953 4233.42868 3179.53781 4233.3967 3179.82166 4233.3967 3181.8056 4233.36625 3181.95867 4233.27954 3182.08844 4233.14977 3182.17515 4232.9967 3182.2056 4231.01276 3182.2056 4230.72891 3182.23758 4230.48063 3182.32446 4230.25791 3182.46441 4230.07191 3182.65041 4229.93196 3182.87313 4229.84508 3183.12141 4229.81563 3183.3828 4229.84508 3183.64419 4229.93229 3183.8934 4230.09692 3184.15827 4230.15046 3184.29635 4230.1501 3184.44444 4230.09589 3184.58224 4229.93196 3184.84313 4229.8388 3185.10938 4229.82294 3185.18505 4229.76456 3185.32444 4229.65863 3185.43222 4229.52028 3185.49301 4229.36924 3185.49813 4229.22709 3185.44686 4229.1141 3185.3465 4228.98311 3185.17579 4228.85417 3185.07686 4228.70403 3185.01466 4228.51668 3184.99 4226.44312 3184.99 4226.25577 3185.01466 4226.10563 3185.07686 4225.97669 3185.17579 4225.87776 3185.30473 4225.81556 3185.45487 4225.7909 3185.64222 4225.7909 3186.00101 4225.76045 3186.15408 4225.67374 3186.28385 4223.54173 3188.41586 4223.37712 3188.62127 4223.26778 3188.84831 4223.21171 3189.094 4223.204 3189.23122 4223.204 3199.04872 4223.23282 3199.31031 4223.31603 3199.54818 4223.45008 3199.76157 4223.54223 3199.86463 4223.99912 3200.321 4224.08592 3200.45075 4224.11644 3200.60385 4224.08604 3200.75697 4223.99934 3200.88679 4223.86955 3200.97354 4223.71644 3201.004 4207.62619 3201.004 4207.46462 3200.96992 4207.33058 3200.87348 4207.24692 3200.73112 4207.22789 3200.56709 4207.25779 3200.2445 4207.22671 3199.90914 4207.18593 3199.76582 4207.17237 3199.61944 4207.2126 3199.47805 4207.30118 3199.36075 4207.42616 3199.28336 4207.57066 3199.25635 4207.72938 3199.25635 4207.91673 3199.23169 4208.03558 3199.18246 4208.18865 3199.15201 4208.34172 3199.18246 4208.46057 3199.23169 4208.64792 3199.25635 4209.69788 3199.25635 4209.88523 3199.23169 4210.03537 3199.16949 4210.16431 3199.07056 4210.26324 3198.94162 4210.32544 3198.79148 4210.3501 3198.60413 4210.3501 3197.48354 4210.37913 3197.33393 4210.46202 3197.20604 4210.58672 3197.11843 4210.73514 3197.08382 4210.88574 3197.10724 4211.01664 3197.18528 4211.12514 3197.28225 4211.33852 3197.41632 4211.57638 3197.49955 4211.83802 3197.5284 4212.25005 3197.5284 4212.40312 3197.55885 4212.53289 3197.64556 4212.63921 3197.82268 4212.66795 3197.93884 4212.69379 3198.21766 4212.78596 3198.5416 4212.93608 3198.84308 4213.13904 3199.11185 4213.38794 3199.33875 4213.67429 3199.51605 4213.98834 3199.63771 4214.3194 3199.6996 4214.6562 3199.6996 4214.98726 3199.63771 4215.30131 3199.51605 4215.58766 3199.33875 4215.83656 3199.11185 4216.03952 3198.84308 4216.18964 3198.5416 4216.28181 3198.21766 4216.30765 3197.93884 4216.36864 3197.74483 4216.3933 3197.55748 4216.3933 3195.24792 4216.36864 3195.06057 4216.29623 3194.88577 4216.26631 3194.75331 4216.28244 3194.61848 4216.34274 3194.49681 4216.44619 3194.35514 4216.51024 3194.20053 4216.5349 3194.01318 4216.5349 3193.06562 4216.51041 3192.87957 4216.42474 3192.67644 4216.3933 3192.521 4216.3933 3191.90792 4216.36864 3191.72057 4216.30644 3191.57043 4216.20751 3191.44149 4216.07857 3191.34256 4215.92843 3191.28036 4215.74108 3191.2557 4213.23452 3191.2557 4213.09407 3191.27419 4212.92158 3191.2591 4212.77162 3191.17252 4212.67231 3191.03069 4212.62539 3190.91743 4212.52646 3190.78849 4212.39752 3190.68956 4212.24738 3190.62736 4212.06003 3190.6027 4210.47947 3190.6027 4210.30727 3190.56373 4210.16861 3190.45443 4210.09052 3190.29608 4210.08821 3190.11954 4210.16213 3189.9592 4210.26324 3189.82742 4210.32544 3189.67728 4210.3501 3189.48993 4210.3501 3186.92427 4210.32544 3186.73692 4210.26324 3186.58678 4210.16431 3186.45784 4210.03537 3186.35891 4209.88523 3186.29671 4209.69788 3186.27205 4208.64792 3186.27205 4208.46057 3186.29671 4208.34172 3186.34594 4208.18865 3186.37639 4208.03558 3186.34594 4207.91673 3186.29671 4207.72938 3186.27205 4206.67942 3186.27205 4206.49207 3186.29671 4206.37322 3186.34594 4206.22015 3186.37639 4206.06708 3186.34594 4205.94823 3186.29671 4205.76088 3186.27205 4204.71092 3186.27205 4204.52357 3186.29671 4204.40467 3186.34596 4204.2516 3186.37641 4204.09853 3186.34596 4203.97963 3186.29671 4203.79228 3186.27205 4202.74232 3186.27205 4202.55497 3186.29671 4202.43612 3186.34594 4202.28305 3186.37639 4202.12998 3186.34594 4202.01113 3186.29671 4201.82378 3186.27205 4200.8566 3186.27205 4200.70353 3186.2416 4200.57376 3186.15489 4200.48705 3186.02512 4200.4566 3185.87205 4200.4566 3183.75049 4200.48705 3183.59742 4200.57376 3183.46765 4207.05925 3176.98216 4207.18902 3176.89545 4207.34209 3176.865 4207.5696 3176.865 4207.90066 3176.80311 4208.21471 3176.68145 4208.50106 3176.50415 4208.74996 3176.27725 4208.95292 3176.00848 4209.10304 3175.707 4209.19521 3175.38306 4209.22629 3175.0477 4209.19521 3174.71234 4209.10304 3174.3884 4208.95292 3174.08692 4208.85917 3173.89855 4208.86242 3173.72263 4208.94085 3173.56512 4209.07929 3173.4565 4209.25094 3173.4178 4220.94231 3173.4178 4221.09538 3173.44825 4221.22515 3173.53496 4221.99847 3174.30827 4222.09185 3174.45527 4222.14259 3174.98936 4222.23476 3175.3133 4222.38488 3175.61478 4222.58784 3175.88355 4222.83674 3176.11045 4223.12309 3176.28775 4223.43714 3176.40941 4223.7682 3176.4713 4224.105 3176.4713 4224.43606 3176.40941 4224.75011 3176.28775 4225.03646 3176.11045 4225.28536 3175.88355 4225.48832 3175.61478 4225.63844 3175.3133 4225.73061 3174.98936 4225.76169 3174.654 4225.73061 3174.31864 4225.63844 3173.9947 4225.48832 3173.69322 4225.28536 3173.42445 4225.03646 3173.19755 4224.75011 3173.02025 4224.43606 3172.89859 4224.105 3172.8367 4223.87739 3172.8367 4223.72432 3172.80625 4223.59455 3172.71954 4222.37854 3171.50353 4222.17313 3171.33892 4221.94609 3171.22958 4221.7004 3171.17351 4221.56318 3171.1658 4219.53597 3171.1658 4219.36931 3171.12943 4219.23296 3171.02693 4219.15172 3170.87694 4219.14035 3170.70674 4219.20093 3170.54728 4219.32244 3170.42756 4219.70403 3170.18666 4220.17812 3169.80198 4220.60338 3169.36392 4220.97384 3168.87865 4221.28578 3168.34962 4221.38415 3168.21365 4221.52963 3168.12999 4221.69663 3168.11338 4222.00668 3168.14872 4223.70641 3168.41834 4225.39233 3168.76395 4227.06105 3169.18484 4228.7092 3169.68018 4230.33347 3170.24896 4231.93059 3170.89005 4233.49733 3171.60214 4235.03056 3172.38381 4236.52716 3173.23347 4237.98414 3174.14943 4239.39856 3175.12983 4240.76757 3176.17271 4242.08842 3177.27595 4243.35843 3178.43734 4244.57506 3179.65454 4245.73586 3180.9251 4246.83848 3182.24646 4247.88072 3183.61596 4248.86046 3185.03084 4249.77573 3186.48825 4250.6247 3187.98525 4251.40565 3189.51884 4252.11701 3191.08592 4252.75734 3192.68334 4253.32537 3194.30787 4253.81993 3195.95626 4254.24005 3197.62517 4254.58489 3199.31141 4254.853 3201.00853 4254.84534 3201.17038 4254.77412 3201.31591 4254.65102 3201.42125 4254.24926 3201.64273 4253.75322 3201.99865 4253.30276 3202.41074 4252.9042 3202.87322 4252.56313 3203.37959 4252.28435 3203.92275 4252.07176 3204.49506 4251.92836 3205.0885 4251.85615 3205.69474 4251.85615 3206.30526 4251.92836 3206.9115 4252.07176 3207.50494 4252.28435 3208.07725 4252.56313 3208.62041 4252.9042 3209.12678 4253.30276 3209.58926 4253.75322 3210.00135 4254.24926 3210.35727 4254.68284 3210.5963 4254.80228 3210.69698 4254.87405 3210.83572 4254.88721 3210.99138 4254.85128 3211.30668 4254.58166 3213.00641 4254.23605 3214.69233 4253.81516 3216.36105 4253.31982 3218.0092 4252.75104 3219.63347 4252.10995 3221.23059 4251.39786 3222.79733 4250.61619 3224.33056 4249.76653 3225.82716 4248.85057 3227.28414 4247.87017 3228.69856 4246.82729 3230.06757 4245.72405 3231.38842 4244.56266 3232.65843 4243.34546 3233.87506 4242.0749 3235.03586 4240.75354 3236.13848 4239.38404 3237.18072 4237.96916 3238.16046 4236.51175 3239.07573 4235.01475 3239.9247 4233.48116 3240.70565 4231.91408 3241.41701 4230.31666 3242.05734 4228.69213 3242.62537 4227.04374 3243.11993 4225.37483 3243.54005 4223.68867 3243.88488 Z M 4226.96746 3224.61571 L 4227.53587 3224.5439 4228.0908 3224.40142 4228.62349 3224.19051 4229.12555 3223.9145 4229.58906 3223.57774 4230.00671 3223.18555 4230.3719 3222.7441 4230.67889 3222.26036 4230.92283 3221.74196 4231.09988 3221.19708 4231.20723 3220.6343 4231.24321 3220.0625 4231.20723 3219.4907 4231.09988 3218.92792 4230.92283 3218.38304 4230.67889 3217.86464 4230.3719 3217.3809 4230.00671 3216.93945 4229.58906 3216.54726 4229.12555 3216.2105 4228.62349 3215.93449 4228.0908 3215.72358 4227.53587 3215.5811 4226.96746 3215.50929 4226.39454 3215.50929 4225.82613 3215.5811 4225.2712 3215.72358 4224.73851 3215.93449 4224.23645 3216.2105 4223.77294 3216.54726 4223.35529 3216.93945 4222.9901 3217.3809 4222.68311 3217.86464 4222.43917 3218.38304 4222.26212 3218.92792 4222.15477 3219.4907 4222.11879 3220.0625 4222.15477 3220.6343 4222.26212 3221.19708 4222.43917 3221.74196 4222.68311 3222.26036 4222.9901 3222.7441 4223.35529 3223.18555 4223.77294 3223.57774 4224.23645 3223.9145 4224.73851 3224.19051 4225.2712 3224.40142 4225.82613 3224.5439 4226.39454 3224.61571 4226.96746 3224.61571 Z \"]]~0~gge30385~1~1~2~1~yes~0",
85 | "RECT~4236.929~3196.776~1~1.5~1~gge105110~0~0~~~VCC1~",
86 | "RECT~4236.929~3198.276~1~1.5~1~gge105113~0~0~~~VCC~",
87 | "PAD~ELLIPSE~4226.681~3220.063~7.874~7.874~1~RESET~7~0~~0~gge105461~0~~Y~0~0.0000~0.2000~4226.681,3220.0625",
88 | "PAD~ELLIPSE~4236.681~3220.063~7.874~7.874~1~OUT~8~0~~0~gge105464~0~~Y~0~0.0000~0.2000~4236.681,3220.0625",
89 | "PAD~ELLIPSE~4236.682~3230.068~7.874~7.874~1~GND~17~0~~0~gge105467~0~~Y~0~0.0000~0.2000~4236.682,3230.0675",
90 | "PAD~ELLIPSE~4226.682~3230.068~7.874~7.874~1~VCC~18~0~~0~gge105458~0~~Y~0~0.0000~0.2000~4226.682,3230.0675",
91 | "PAD~ELLIPSE~4188.897~3188.827~7.874~7.874~1~CLK~17~0~~180~gge105536~0~~Y~0~0.0000~0.2000~4188.8973,3188.8272",
92 | "RECT~4214.409~3193.039~1.5~1~1~gge131781~0~0~~~VCC2~",
93 | "RECT~4215.909~3193.039~1.5~1~1~gge131784~0~0~~~VCC~",
94 | "RECT~4202.559~3209.263~1~1.5~1~gge131898~0~0~~~VCC3~",
95 | "RECT~4202.559~3207.763~1~1.5~1~gge131901~0~0~~~VCC~",
96 | "TEXT~L~4192.779~3204.985~0.8~90~0~3~~4.499991~CLK~M 4189.2637 3201.9153 L 4188.8537 3202.1253 L 4188.4437 3202.5353 L 4188.2337 3202.9353 L 4188.2337 3203.7553 L 4188.4437 3204.1653 L 4188.8537 3204.5753 L 4189.2637 3204.7853 L 4189.8737 3204.9853 L 4190.8937 3204.9853 L 4191.5137 3204.7853 L 4191.9237 3204.5753 L 4192.3337 3204.1653 L 4192.5337 3203.7553 L 4192.5337 3202.9353 L 4192.3337 3202.5353 L 4191.9237 3202.1253 L 4191.5137 3201.9153 M 4188.2337 3200.5653 L 4192.5337 3200.5653 M 4192.5337 3200.5653 L 4192.5337 3198.1153 M 4188.2337 3196.7653 L 4192.5337 3196.7653 M 4188.2337 3193.8953 L 4191.1037 3196.7653 M 4190.0837 3195.7353 L 4192.5337 3193.8953~~gge229875~~0~pinpart",
97 | "TEXT~L~4228.661~3213.237~0.8~90~0~3~~4.499991~RST~M 4224.1244 3213.2376L4228.4144 3213.2376 M 4224.1244 3213.2376L4224.1244 3211.3976 L4224.3244 3210.7776 L4224.5244 3210.5776 L4224.9344 3210.3776 L4225.3444 3210.3776 L4225.7544 3210.5776 L4225.9644 3210.7776 L4226.1644 3211.3976 L4226.1644 3213.2376 M 4226.1644 3211.8076L4228.4144 3210.3776 M 4224.7344 3206.1576L4224.3244 3206.5676 L4224.1244 3207.1776 L4224.1244 3207.9976 L4224.3244 3208.6176 L4224.7344 3209.0276 L4225.1444 3209.0276 L4225.5544 3208.8176 L4225.7544 3208.6176 L4225.9644 3208.2076 L4226.3744 3206.9776 L4226.5744 3206.5676 L4226.7744 3206.3676 L4227.1844 3206.1576 L4227.8044 3206.1576 L4228.2144 3206.5676 L4228.4144 3207.1776 L4228.4144 3207.9976 L4228.2144 3208.6176 L4227.8044 3209.0276 M 4224.1244 3203.3776L4228.4144 3203.3776 M 4224.1244 3204.8076L4224.1244 3201.9476 ~~gge229887~~0~pinpart",
98 | "TEXT~L~4238.897~3213.237~0.8~90~0~3~~4.499991~OUT~M 4234.3606 3212.0138L4234.5606 3212.4138 L4234.9706 3212.8238 L4235.3806 3213.0338 L4235.9906 3213.2338 L4237.0106 3213.2338 L4237.6306 3213.0338 L4238.0406 3212.8238 L4238.4506 3212.4138 L4238.6506 3212.0138 L4238.6506 3211.1938 L4238.4506 3210.7838 L4238.0406 3210.3738 L4237.6306 3210.1638 L4237.0106 3209.9638 L4235.9906 3209.9638 L4235.3806 3210.1638 L4234.9706 3210.3738 L4234.5606 3210.7838 L4234.3606 3211.1938 L4234.3606 3212.0138 M 4234.3606 3208.6138L4237.4206 3208.6138 L4238.0406 3208.4138 L4238.4506 3208.0038 L4238.6506 3207.3838 L4238.6506 3206.9738 L4238.4506 3206.3638 L4238.0406 3205.9538 L4237.4206 3205.7538 L4234.3606 3205.7538 M 4234.3606 3202.9638L4238.6506 3202.9638 M 4234.3606 3204.4038L4234.3606 3201.5338 ~~gge229899~~0~pinpart",
99 | "TEXT~L~4228.661~3238.433~0.8~90~0~3~~4.499991~+~M 4224.7354 3236.5881 L 4228.4154 3236.5881 M 4226.5754 3238.4381 L 4226.5754 3234.7481~~gge229911~~0~pinpart",
100 | "TEXT~L~4238.504~3238.433~0.8~90~0~3~~4.499991~-~M 4236.4201 3238.4369L4236.4201 3234.7469 ~~gge229923~~0~pinpart",
101 | "LIB~4201.1033~3220.9199~package`DQFN-16_L3.5-W2.5-P0.50-BL-EP`Contributor`lcsc`Supplier`LCSC`Supplier Part`C464478`Manufacturer`Nexperia(安世)`Manufacturer Part`74HC4040BQX`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C464478&%26type=1&ref=editor`3DModel`DQFN-16_L3.5-W2.5-P0.50-BL-EP`~270~~gge101185~1~5471d5619822424f9ec369c6a68b828d~1683776464~0~~yes~~#@$TEXT~N~4215.103~3219.92~0.6~270~0~3~~4.5~DQFN-16_L3.5-W2.5-P0.50-BL-EP~M 4219.6433 3219.9199 L 4215.3533 3219.9199 M 4219.6433 3219.9199 L 4219.6433 3221.3499 L 4219.4433 3221.9699 L 4219.0333 3222.3699 L 4218.6233 3222.5799 L 4218.0033 3222.7799 L 4216.9833 3222.7799 L 4216.3733 3222.5799 L 4215.9633 3222.3699 L 4215.5533 3221.9699 L 4215.3533 3221.3499 L 4215.3533 3219.9199 M 4219.6433 3225.3599 L 4219.4433 3224.9499 L 4219.0333 3224.5399 L 4218.6233 3224.3399 L 4218.0033 3224.1299 L 4216.9833 3224.1299 L 4216.3733 3224.3399 L 4215.9633 3224.5399 L 4215.5533 3224.9499 L 4215.3533 3225.3599 L 4215.3533 3226.1799 L 4215.5533 3226.5899 L 4215.9633 3226.9999 L 4216.3733 3227.1999 L 4216.9833 3227.4099 L 4218.0033 3227.4099 L 4218.6233 3227.1999 L 4219.0333 3226.9999 L 4219.4433 3226.5899 L 4219.6433 3226.1799 L 4219.6433 3225.3599 M 4216.1633 3225.9699 L 4214.9433 3227.1999 M 4219.6433 3228.7599 L 4215.3533 3228.7599 M 4219.6433 3228.7599 L 4219.6433 3231.4199 M 4217.6033 3228.7599 L 4217.6033 3230.3899 M 4219.6433 3232.7699 L 4215.3533 3232.7699 M 4219.6433 3232.7699 L 4215.3533 3235.6299 M 4219.6433 3235.6299 L 4215.3533 3235.6299 M 4217.1933 3236.9799 L 4217.1933 3240.6599 M 4218.8233 3242.0099 L 4219.0333 3242.4199 L 4219.6433 3243.0299 L 4215.3533 3243.0299 M 4219.0333 3246.8399 L 4219.4433 3246.6299 L 4219.6433 3246.0199 L 4219.6433 3245.6099 L 4219.4433 3244.9999 L 4218.8233 3244.5899 L 4217.8033 3244.3799 L 4216.7833 3244.3799 L 4215.9633 3244.5899 L 4215.5533 3244.9999 L 4215.3533 3245.6099 L 4215.3533 3245.8199 L 4215.5533 3246.4299 L 4215.9633 3246.8399 L 4216.5733 3247.0399 L 4216.7833 3247.0399 L 4217.3933 3246.8399 L 4217.8033 3246.4299 L 4218.0033 3245.8199 L 4218.0033 3245.6099 L 4217.8033 3244.9999 L 4217.3933 3244.5899 L 4216.7833 3244.3799 M 4213.9133 3248.3899 L 4213.9133 3252.0699 M 4219.6433 3253.4199 L 4215.3533 3253.4199 M 4215.3533 3253.4199 L 4215.3533 3255.8799 M 4219.6433 3257.6399 L 4219.6433 3259.8899 L 4218.0033 3258.6599 L 4218.0033 3259.2699 L 4217.8033 3259.6799 L 4217.6033 3259.8899 L 4216.9833 3260.0899 L 4216.5733 3260.0899 L 4215.9633 3259.8899 L 4215.5533 3259.4799 L 4215.3533 3258.8699 L 4215.3533 3258.2499 L 4215.5533 3257.6399 L 4215.7533 3257.4299 L 4216.1633 3257.2299 M 4216.3733 3261.6499 L 4216.1633 3261.4399 L 4215.9633 3261.6499 L 4216.1633 3261.8499 L 4216.3733 3261.6499 M 4219.6433 3265.6599 L 4219.6433 3263.6099 L 4217.8033 3263.4099 L 4218.0033 3263.6099 L 4218.2133 3264.2199 L 4218.2133 3264.8399 L 4218.0033 3265.4499 L 4217.6033 3265.8599 L 4216.9833 3266.0699 L 4216.5733 3266.0699 L 4215.9633 3265.8599 L 4215.5533 3265.4499 L 4215.3533 3264.8399 L 4215.3533 3264.2199 L 4215.5533 3263.6099 L 4215.7533 3263.4099 L 4216.1633 3263.1999 M 4217.1933 3267.4199 L 4217.1933 3271.0999 M 4219.6433 3272.4499 L 4215.3533 3273.4699 M 4219.6433 3274.4899 L 4215.3533 3273.4699 M 4219.6433 3274.4899 L 4215.3533 3275.5199 M 4219.6433 3276.5399 L 4215.3533 3275.5199 M 4218.6233 3278.0899 L 4218.8233 3278.0899 L 4219.2333 3278.2999 L 4219.4433 3278.4999 L 4219.6433 3278.9099 L 4219.6433 3279.7299 L 4219.4433 3280.1399 L 4219.2333 3280.3399 L 4218.8233 3280.5499 L 4218.4133 3280.5499 L 4218.0033 3280.3399 L 4217.3933 3279.9299 L 4215.3533 3277.8899 L 4215.3533 3280.7499 M 4216.3733 3282.3099 L 4216.1633 3282.0999 L 4215.9633 3282.3099 L 4216.1633 3282.5099 L 4216.3733 3282.3099 M 4219.6433 3286.3199 L 4219.6433 3284.2699 L 4217.8033 3284.0699 L 4218.0033 3284.2699 L 4218.2133 3284.8799 L 4218.2133 3285.4999 L 4218.0033 3286.1099 L 4217.6033 3286.5199 L 4216.9833 3286.7199 L 4216.5733 3286.7199 L 4215.9633 3286.5199 L 4215.5533 3286.1099 L 4215.3533 3285.4999 L 4215.3533 3284.8799 L 4215.5533 3284.2699 L 4215.7533 3284.0699 L 4216.1633 3283.8599 M 4217.1933 3288.0699 L 4217.1933 3291.7599 M 4219.6433 3293.1099 L 4215.3533 3293.1099 M 4219.6433 3293.1099 L 4219.6433 3294.9499 L 4219.4433 3295.5599 L 4219.2333 3295.7699 L 4218.8233 3295.9699 L 4218.2133 3295.9699 L 4217.8033 3295.7699 L 4217.6033 3295.5599 L 4217.3933 3294.9499 L 4217.3933 3293.1099 M 4219.6433 3298.5499 L 4219.4433 3297.9299 L 4218.8233 3297.5199 L 4217.8033 3297.3199 L 4217.1933 3297.3199 L 4216.1633 3297.5199 L 4215.5533 3297.9299 L 4215.3533 3298.5499 L 4215.3533 3298.9599 L 4215.5533 3299.5699 L 4216.1633 3299.9799 L 4217.1933 3300.1799 L 4217.8033 3300.1799 L 4218.8233 3299.9799 L 4219.4433 3299.5699 L 4219.6433 3298.9599 L 4219.6433 3298.5499 M 4216.3733 3301.7399 L 4216.1633 3301.5299 L 4215.9633 3301.7399 L 4216.1633 3301.9399 L 4216.3733 3301.7399 M 4219.6433 3305.7499 L 4219.6433 3303.6999 L 4217.8033 3303.4999 L 4218.0033 3303.6999 L 4218.2133 3304.3199 L 4218.2133 3304.9299 L 4218.0033 3305.5399 L 4217.6033 3305.9499 L 4216.9833 3306.1599 L 4216.5733 3306.1599 L 4215.9633 3305.9499 L 4215.5533 3305.5399 L 4215.3533 3304.9299 L 4215.3533 3304.3199 L 4215.5533 3303.6999 L 4215.7533 3303.4999 L 4216.1633 3303.2899 M 4219.6433 3308.7299 L 4219.4433 3308.1199 L 4218.8233 3307.7099 L 4217.8033 3307.5099 L 4217.1933 3307.5099 L 4216.1633 3307.7099 L 4215.5533 3308.1199 L 4215.3533 3308.7299 L 4215.3533 3309.1399 L 4215.5533 3309.7599 L 4216.1633 3310.1699 L 4217.1933 3310.3699 L 4217.8033 3310.3699 L 4218.8233 3310.1699 L 4219.4433 3309.7599 L 4219.6433 3309.1399 L 4219.6433 3308.7299 M 4217.1933 3311.7199 L 4217.1933 3315.3999 M 4219.6433 3316.7499 L 4215.3533 3316.7499 M 4219.6433 3316.7499 L 4219.6433 3318.5899 L 4219.4433 3319.2099 L 4219.2333 3319.4099 L 4218.8233 3319.6199 L 4218.4133 3319.6199 L 4218.0033 3319.4099 L 4217.8033 3319.2099 L 4217.6033 3318.5899 M 4217.6033 3316.7499 L 4217.6033 3318.5899 L 4217.3933 3319.2099 L 4217.1933 3319.4099 L 4216.7833 3319.6199 L 4216.1633 3319.6199 L 4215.7533 3319.4099 L 4215.5533 3319.2099 L 4215.3533 3318.5899 L 4215.3533 3316.7499 M 4219.6433 3320.9699 L 4215.3533 3320.9699 M 4215.3533 3320.9699 L 4215.3533 3323.4199 M 4217.1933 3324.7699 L 4217.1933 3328.4499 M 4219.6433 3329.7999 L 4215.3533 3329.7999 M 4219.6433 3329.7999 L 4219.6433 3332.4599 M 4217.6033 3329.7999 L 4217.6033 3331.4399 M 4215.3533 3329.7999 L 4215.3533 3332.4599 M 4219.6433 3333.8099 L 4215.3533 3333.8099 M 4219.6433 3333.8099 L 4219.6433 3335.6499 L 4219.4433 3336.2699 L 4219.2333 3336.4699 L 4218.8233 3336.6699 L 4218.2133 3336.6699 L 4217.8033 3336.4699 L 4217.6033 3336.2699 L 4217.3933 3335.6499 L 4217.3933 3333.8099~none~gge100837~~0~#@$TEXT~P~4208.103~3219.92~0.6~270~0~3~~4.5~U18~M 4212.6424 3219.9216 L 4209.5724 3219.9216 L 4208.9624 3220.1216 L 4208.5524 3220.5316 L 4208.3524 3221.1516 L 4208.3524 3221.5516 L 4208.5524 3222.1716 L 4208.9624 3222.5816 L 4209.5724 3222.7816 L 4212.6424 3222.7816 M 4211.8224 3224.1316 L 4212.0324 3224.5416 L 4212.6424 3225.1516 L 4208.3524 3225.1516 M 4212.6424 3227.5316 L 4212.4424 3226.9116 L 4212.0324 3226.7116 L 4211.6224 3226.7116 L 4211.2124 3226.9116 L 4211.0124 3227.3216 L 4210.8024 3228.1416 L 4210.6024 3228.7516 L 4210.1924 3229.1616 L 4209.7824 3229.3716 L 4209.1624 3229.3716 L 4208.7624 3229.1616 L 4208.5524 3228.9616 L 4208.3524 3228.3516 L 4208.3524 3227.5316 L 4208.5524 3226.9116 L 4208.7624 3226.7116 L 4209.1624 3226.5016 L 4209.7824 3226.5016 L 4210.1924 3226.7116 L 4210.6024 3227.1216 L 4210.8024 3227.7316 L 4211.0124 3228.5516 L 4211.2124 3228.9616 L 4211.6224 3229.1616 L 4212.0324 3229.1616 L 4212.4424 3228.9616 L 4212.6424 3228.3516 L 4212.6424 3227.5316~none~gge100843~~0~#@$CIRCLE~4196.182~3214.03~0.118~0.2362~101~gge100849~0~~#@$CIRCLE~4200.103~3212.92~0.295~0.5906~12~gge100852~0~~#@$SOLIDREGION~100~~M 4196.182 3215.5262 L 4197.7568 3215.5262 L 4197.7568 3216.4711 L 4196.182 3216.4711 Z ~solid~gge100855~~~~0#@$SOLIDREGION~100~~M 4196.182 3217.4947 L 4197.7568 3217.4947 L 4197.7568 3218.4396 L 4196.182 3218.4396 Z ~solid~gge100858~~~~0#@$SOLIDREGION~100~~M 4196.182 3219.4632 L 4197.7568 3219.4632 L 4197.7568 3220.4081 L 4196.182 3220.4081 Z ~solid~gge100861~~~~0#@$SOLIDREGION~100~~M 4196.182 3221.4317 L 4197.7568 3221.4317 L 4197.7568 3222.3766 L 4196.182 3222.3766 Z ~solid~gge100864~~~~0#@$SOLIDREGION~100~~M 4196.182 3223.4002 L 4197.7568 3223.4002 L 4197.7568 3224.3451 L 4196.182 3224.3451 Z ~solid~gge100867~~~~0#@$SOLIDREGION~100~~M 4196.182 3225.3687 L 4197.7568 3225.3687 L 4197.7568 3226.3136 L 4196.182 3226.3136 Z ~solid~gge100870~~~~0#@$SOLIDREGION~100~~M 4199.6466 3226.2349 L 4200.5915 3226.2349 L 4200.5915 3227.8097 L 4199.6466 3227.8097 Z ~solid~gge100873~~~~0#@$SOLIDREGION~100~~M 4201.6151 3226.2349 L 4202.56 3226.2349 L 4202.56 3227.8097 L 4201.6151 3227.8097 Z ~solid~gge100876~~~~0#@$SOLIDREGION~100~~M 4206.0246 3225.3687 L 4204.4498 3225.3687 L 4204.4498 3226.3136 L 4206.0246 3226.3136 Z ~solid~gge100879~~~~0#@$SOLIDREGION~100~~M 4206.0246 3223.4002 L 4204.4498 3223.4002 L 4204.4498 3224.3451 L 4206.0246 3224.3451 Z ~solid~gge100882~~~~0#@$SOLIDREGION~100~~M 4206.0246 3221.4317 L 4204.4498 3221.4317 L 4204.4498 3222.3766 L 4206.0246 3222.3766 Z ~solid~gge100885~~~~0#@$SOLIDREGION~100~~M 4206.0246 3219.4632 L 4204.4498 3219.4632 L 4204.4498 3220.4081 L 4206.0246 3220.4081 Z ~solid~gge100888~~~~0#@$SOLIDREGION~100~~M 4206.0246 3217.4947 L 4204.4498 3217.4947 L 4204.4498 3218.4396 L 4206.0246 3218.4396 Z ~solid~gge100891~~~~0#@$SOLIDREGION~100~~M 4206.0246 3215.5262 L 4204.4498 3215.5262 L 4204.4498 3216.4711 L 4206.0246 3216.4711 Z ~solid~gge100894~~~~0#@$SOLIDREGION~100~~M 4201.6151 3215.6049 L 4202.56 3215.6049 L 4202.56 3214.0301 L 4201.6151 3214.0301 Z ~solid~gge100897~~~~0#@$SOLIDREGION~100~~M 4199.6466 3215.6049 L 4200.5915 3215.6049 L 4200.5915 3214.0301 L 4199.6466 3214.0301 Z ~solid~gge100900~~~~0#@$SOLIDREGION~100~~M 4199.2923 3216.6876 L 4203.3671 3216.6876 L 4203.3671 3225.1522 L 4198.8395 3225.1522 L 4198.8395 3217.1404 Z ~solid~gge100903~~~~0#@$SOLIDREGION~99~~M 4196.182 3214.0301 L 4206.0246 3214.0301 L 4206.0246 3227.8097 L 4196.182 3227.8097 Z ~solid~gge100906~~~~0#@$TRACK~0.6~3~~4203.3887 3213.7301 4206.3246 3213.7301 4206.3246 3214.6975~gge100909~0#@$TRACK~0.6~3~~4203.3887 3228.1097 4206.3246 3228.1097 4206.3246 3227.1423~gge100912~0#@$TRACK~0.6~3~~4198.8179 3213.7301 4195.882 3213.7301 4195.882 3214.6975~gge100915~0#@$TRACK~0.6~3~~4198.8179 3228.1097 4195.882 3228.1097 4195.882 3227.1423~gge100918~0#@$CIRCLE~4198.603~3212.92~0.295~0.5906~3~gge100921~0~~#@$SVGNODE~{\"gId\":\"gge101185_outline\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"13.85824\",\"c_height\":\"9.92124\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4201.1034,3220.9199\",\"uuid\":\"785c24efc5da4ba0b38de7c68d6a5913\",\"c_etype\":\"outline3D\",\"title\":\"DQFN-16_L3.5-W2.5-P0.50-BL-EP\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge101185_outline\"},\"childNodes\":[{\"gId\":\"gge101185_outline_line0\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4202.5994 3213.9908 4201.6151 3213.9908 4201.6151 3214.0302 4200.6309 3214.0302 4200.6309 3213.9908 4199.6466 3213.9908 4199.6466 3214.0302 4197.9143 3214.0302 4197.5206 3214.0302 4197.4419 3214.0302 4196.9301 3214.0302 4196.812 3214.0302 4196.182 3214.0302 4196.182 3215.5262 4196.1427 3215.5262 4196.1427 3216.5105 4196.182 3216.5105 4196.182 3217.4947 4196.1427 3217.4947 4196.1427 3218.479 4196.182 3218.479 4196.182 3219.3845 4196.182 3219.4632 4196.1427 3219.4632 4196.1427 3220.4475 4196.182 3220.4475 4196.182 3221.4317 4196.1427 3221.4317 4196.1427 3222.416 4196.182 3222.416 4196.182 3223.4002 4196.1427 3223.4002 4196.1427 3224.3845 4196.182 3224.3845 4196.182 3224.7388 4196.182 3225.0931 4196.182 3225.3687 4196.1427 3225.3687 4196.1427 3226.353 4196.182 3226.353 4196.182 3227.8097 4196.812 3227.8097 4196.9301 3227.8097 4197.4419 3227.8097 4197.5206 3227.8097 4197.9143 3227.8097 4199.6466 3227.8097 4199.6466 3227.849 4200.6309 3227.849 4200.6309 3227.8097 4201.6151 3227.8097 4201.6151 3227.849 4202.5994 3227.849 4202.5994 3227.8097 4206.0245 3227.8097 4206.0245 3226.353 4206.0639 3226.353 4206.0639 3225.3687 4206.0245 3225.3687 4206.0245 3225.0931 4206.0245 3224.7388 4206.0245 3224.3845 4206.0639 3224.3845 4206.0639 3223.4002 4206.0245 3223.4002 4206.0245 3222.416 4206.0639 3222.416 4206.0639 3221.4317 4206.0245 3221.4317 4206.0245 3220.4475 4206.0639 3220.4475 4206.0639 3219.4632 4206.0245 3219.4632 4206.0245 3219.3845 4206.0245 3218.479 4206.0639 3218.479 4206.0639 3217.4947 4206.0245 3217.4947 4206.0245 3216.5105 4206.0639 3216.5105 4206.0639 3215.5262 4206.0245 3215.5262 4206.0245 3214.0302 4202.5994 3214.0302 4202.5994 3213.9908 4202.5994 3213.9908\",\"id\":\"gge101185_outline_line0\"}}]}#@$PAD~RECT~4196.546~3215.999~1.1024~2.6181~1~A5~2~0~4195.2372 3215.4475 4197.8553 3215.4475 4197.8553 3216.5498 4195.2372 3216.5498~270~gge100930~0~~Y~0~0.0000~0.2000~4196.5462,3215.9986#@$PAD~RECT~4196.546~3217.967~1.1024~2.6181~1~A4~3~0~4195.2372 3217.416 4197.8553 3217.416 4197.8553 3218.5183 4195.2372 3218.5183~270~gge100945~0~~Y~0~0.0000~0.2000~4196.5462,3217.9671#@$PAD~RECT~4196.546~3219.936~1.1024~2.6181~1~A6~4~0~4195.2372 3219.3845 4197.8553 3219.3845 4197.8553 3220.4868 4195.2372 3220.4868~270~gge100960~0~~Y~0~0.0000~0.2000~4196.5462,3219.9356#@$PAD~RECT~4196.546~3221.904~1.1024~2.6181~1~A3~5~0~4195.2372 3221.353 4197.8553 3221.353 4197.8553 3222.4553 4195.2372 3222.4553~270~gge100975~0~~Y~0~0.0000~0.2000~4196.5462,3221.9042#@$PAD~RECT~4196.546~3223.873~1.1024~2.6181~1~A2~6~0~4195.2372 3223.3215 4197.8553 3223.3215 4197.8553 3224.4238 4195.2372 3224.4238~270~gge100990~0~~Y~0~0.0000~0.2000~4196.5462,3223.8727#@$PAD~RECT~4196.546~3225.841~1.1024~2.6181~1~A1~7~0~4195.2372 3225.29 4197.8553 3225.29 4197.8553 3226.3923 4195.2372 3226.3923~270~gge101005~0~~Y~0~0.0000~0.2000~4196.5462,3225.8412#@$PAD~RECT~4200.119~3227.445~2.6181~1.1024~1~GND~8~0~4199.5679 3228.7545 4200.6702 3228.7545 4200.6702 3226.1364 4199.5679 3226.1364~270~gge101020~0~~Y~0~0.0000~0.2000~4200.119,3227.4455#@$PAD~RECT~4202.088~3227.445~2.6181~1.1024~1~A0~9~0~4201.5364 3228.7545 4202.6387 3228.7545 4202.6387 3226.1364 4201.5364 3226.1364~270~gge101035~0~~Y~0~0.0000~0.2000~4202.0876,3227.4455#@$PAD~RECT~4205.66~3225.841~1.1024~2.6181~1~CLK~10~0~4206.9694 3225.29 4204.3513 3225.29 4204.3513 3226.3923 4206.9694 3226.3923~270~gge101050~0~~Y~0~0.0000~0.2000~4205.6604,3225.8412#@$PAD~RECT~4205.66~3223.873~1.1024~2.6181~1~RESET~11~0~4206.9694 3223.3215 4204.3513 3223.3215 4204.3513 3224.4238 4206.9694 3224.4238~270~gge101065~0~~Y~0~0.0000~0.2000~4205.6604,3223.8727#@$PAD~RECT~4205.66~3221.904~1.1024~2.6181~1~A8~12~0~4206.9694 3221.353 4204.3513 3221.353 4204.3513 3222.4553 4206.9694 3222.4553~270~gge101080~0~~Y~0~0.0000~0.2000~4205.6604,3221.9042#@$PAD~RECT~4205.66~3219.936~1.1024~2.6181~1~A7~13~0~4206.9694 3219.3845 4204.3513 3219.3845 4204.3513 3220.4868 4206.9694 3220.4868~270~gge101095~0~~Y~0~0.0000~0.2000~4205.6604,3219.9356#@$PAD~RECT~4205.66~3217.967~1.1024~2.6181~1~A9~14~0~4206.9694 3217.416 4204.3513 3217.416 4204.3513 3218.5183 4206.9694 3218.5183~270~gge101110~0~~Y~0~0.0000~0.2000~4205.6604,3217.9671#@$PAD~RECT~4205.66~3215.999~1.1024~2.6181~1~A10~15~0~4206.9694 3215.4475 4204.3513 3215.4475 4204.3513 3216.5498 4206.9694 3216.5498~270~gge101125~0~~Y~0~0.0000~0.2000~4205.6604,3215.9986#@$PAD~RECT~4202.088~3214.394~2.6181~1.1024~1~VCC3~16~0~4201.5364 3215.7034 4202.6387 3215.7034 4202.6387 3213.0853 4201.5364 3213.0853~270~gge101140~0~~Y~0~0.0000~0.2000~4202.0876,3214.3943#@$PAD~RECT~4200.119~3214.394~2.6181~1.1024~1~A11~1~0~4199.5679 3215.7034 4200.6702 3215.7034 4200.6702 3213.0853 4199.5679 3213.0853~270~gge101155~0~~Y~0~0.0000~0.2000~4200.119,3214.3943#@$PAD~RECT~4201.103~3220.92~8.4646~4.5276~1~GND~17~0~4198.8395 3216.6876 4203.3671 3216.6876 4203.3671 3225.1522 4198.8395 3225.1522~270~gge101170~0~~Y~0~0.0000~0.2000~4201.1033,3220.9199",
102 | "LIB~4204.2516~3192.7642~package`DQFN-16_L3.5-W2.5-P0.50-BL-EP`Contributor`lcsc`Supplier`LCSC`Supplier Part`C464478`Manufacturer`Nexperia(安世)`Manufacturer Part`74HC4040BQX`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C464478&%26type=1&ref=editor`3DModel`DQFN-16_L3.5-W2.5-P0.50-BL-EP`~180~~ggefeb9cd5440806924~1~5471d5619822424f9ec369c6a68b828d~1683776464~0~~yes~~#@$TEXT~N~4205.252~3206.764~0.6~180~0~3~~4.5~DQFN-16_L3.5-W2.5-P0.50-BL-EP~M 4205.2516 3211.3042 L 4205.2516 3207.0142 M 4205.2516 3211.3042 L 4203.8216 3211.3042 L 4203.2016 3211.1042 L 4202.8016 3210.6942 L 4202.5916 3210.2842 L 4202.3916 3209.6642 L 4202.3916 3208.6442 L 4202.5916 3208.0342 L 4202.8016 3207.6242 L 4203.2016 3207.2142 L 4203.8216 3207.0142 L 4205.2516 3207.0142 M 4199.8116 3211.3042 L 4200.2216 3211.1042 L 4200.6316 3210.6942 L 4200.8316 3210.2842 L 4201.0416 3209.6642 L 4201.0416 3208.6442 L 4200.8316 3208.0342 L 4200.6316 3207.6242 L 4200.2216 3207.2142 L 4199.8116 3207.0142 L 4198.9916 3207.0142 L 4198.5816 3207.2142 L 4198.1716 3207.6242 L 4197.9716 3208.0342 L 4197.7616 3208.6442 L 4197.7616 3209.6642 L 4197.9716 3210.2842 L 4198.1716 3210.6942 L 4198.5816 3211.1042 L 4198.9916 3211.3042 L 4199.8116 3211.3042 M 4199.2016 3207.8242 L 4197.9716 3206.6042 M 4196.4116 3211.3042 L 4196.4116 3207.0142 M 4196.4116 3211.3042 L 4193.7516 3211.3042 M 4196.4116 3209.2642 L 4194.7816 3209.2642 M 4192.4016 3211.3042 L 4192.4016 3207.0142 M 4192.4016 3211.3042 L 4189.5416 3207.0142 M 4189.5416 3211.3042 L 4189.5416 3207.0142 M 4188.1916 3208.8542 L 4184.5116 3208.8542 M 4183.1616 3210.4842 L 4182.7516 3210.6942 L 4182.1416 3211.3042 L 4182.1416 3207.0142 M 4178.3316 3210.6942 L 4178.5416 3211.1042 L 4179.1516 3211.3042 L 4179.5616 3211.3042 L 4180.1716 3211.1042 L 4180.5816 3210.4842 L 4180.7916 3209.4642 L 4180.7916 3208.4442 L 4180.5816 3207.6242 L 4180.1716 3207.2142 L 4179.5616 3207.0142 L 4179.3516 3207.0142 L 4178.7416 3207.2142 L 4178.3316 3207.6242 L 4178.1316 3208.2342 L 4178.1316 3208.4442 L 4178.3316 3209.0542 L 4178.7416 3209.4642 L 4179.3516 3209.6642 L 4179.5616 3209.6642 L 4180.1716 3209.4642 L 4180.5816 3209.0542 L 4180.7916 3208.4442 M 4176.7816 3205.5742 L 4173.1016 3205.5742 M 4171.7516 3211.3042 L 4171.7516 3207.0142 M 4171.7516 3207.0142 L 4169.2916 3207.0142 M 4167.5316 3211.3042 L 4165.2816 3211.3042 L 4166.5116 3209.6642 L 4165.9016 3209.6642 L 4165.4916 3209.4642 L 4165.2816 3209.2642 L 4165.0816 3208.6442 L 4165.0816 3208.2342 L 4165.2816 3207.6242 L 4165.6916 3207.2142 L 4166.3016 3207.0142 L 4166.9216 3207.0142 L 4167.5316 3207.2142 L 4167.7416 3207.4142 L 4167.9416 3207.8242 M 4163.5216 3208.0342 L 4163.7316 3207.8242 L 4163.5216 3207.6242 L 4163.3216 3207.8242 L 4163.5216 3208.0342 M 4159.5116 3211.3042 L 4161.5616 3211.3042 L 4161.7616 3209.4642 L 4161.5616 3209.6642 L 4160.9516 3209.8742 L 4160.3316 3209.8742 L 4159.7216 3209.6642 L 4159.3116 3209.2642 L 4159.1016 3208.6442 L 4159.1016 3208.2342 L 4159.3116 3207.6242 L 4159.7216 3207.2142 L 4160.3316 3207.0142 L 4160.9516 3207.0142 L 4161.5616 3207.2142 L 4161.7616 3207.4142 L 4161.9716 3207.8242 M 4157.7516 3208.8542 L 4154.0716 3208.8542 M 4152.7216 3211.3042 L 4151.7016 3207.0142 M 4150.6816 3211.3042 L 4151.7016 3207.0142 M 4150.6816 3211.3042 L 4149.6516 3207.0142 M 4148.6316 3211.3042 L 4149.6516 3207.0142 M 4147.0816 3210.2842 L 4147.0816 3210.4842 L 4146.8716 3210.8942 L 4146.6716 3211.1042 L 4146.2616 3211.3042 L 4145.4416 3211.3042 L 4145.0316 3211.1042 L 4144.8316 3210.8942 L 4144.6216 3210.4842 L 4144.6216 3210.0742 L 4144.8316 3209.6642 L 4145.2416 3209.0542 L 4147.2816 3207.0142 L 4144.4216 3207.0142 M 4142.8616 3208.0342 L 4143.0716 3207.8242 L 4142.8616 3207.6242 L 4142.6616 3207.8242 L 4142.8616 3208.0342 M 4138.8516 3211.3042 L 4140.9016 3211.3042 L 4141.1016 3209.4642 L 4140.9016 3209.6642 L 4140.2916 3209.8742 L 4139.6716 3209.8742 L 4139.0616 3209.6642 L 4138.6516 3209.2642 L 4138.4516 3208.6442 L 4138.4516 3208.2342 L 4138.6516 3207.6242 L 4139.0616 3207.2142 L 4139.6716 3207.0142 L 4140.2916 3207.0142 L 4140.9016 3207.2142 L 4141.1016 3207.4142 L 4141.3116 3207.8242 M 4137.1016 3208.8542 L 4133.4116 3208.8542 M 4132.0616 3211.3042 L 4132.0616 3207.0142 M 4132.0616 3211.3042 L 4130.2216 3211.3042 L 4129.6116 3211.1042 L 4129.4016 3210.8942 L 4129.2016 3210.4842 L 4129.2016 3209.8742 L 4129.4016 3209.4642 L 4129.6116 3209.2642 L 4130.2216 3209.0542 L 4132.0616 3209.0542 M 4126.6216 3211.3042 L 4127.2416 3211.1042 L 4127.6516 3210.4842 L 4127.8516 3209.4642 L 4127.8516 3208.8542 L 4127.6516 3207.8242 L 4127.2416 3207.2142 L 4126.6216 3207.0142 L 4126.2116 3207.0142 L 4125.6016 3207.2142 L 4125.1916 3207.8242 L 4124.9916 3208.8542 L 4124.9916 3209.4642 L 4125.1916 3210.4842 L 4125.6016 3211.1042 L 4126.2116 3211.3042 L 4126.6216 3211.3042 M 4123.4316 3208.0342 L 4123.6416 3207.8242 L 4123.4316 3207.6242 L 4123.2316 3207.8242 L 4123.4316 3208.0342 M 4119.4216 3211.3042 L 4121.4716 3211.3042 L 4121.6716 3209.4642 L 4121.4716 3209.6642 L 4120.8516 3209.8742 L 4120.2416 3209.8742 L 4119.6316 3209.6642 L 4119.2216 3209.2642 L 4119.0116 3208.6442 L 4119.0116 3208.2342 L 4119.2216 3207.6242 L 4119.6316 3207.2142 L 4120.2416 3207.0142 L 4120.8516 3207.0142 L 4121.4716 3207.2142 L 4121.6716 3207.4142 L 4121.8816 3207.8242 M 4116.4416 3211.3042 L 4117.0516 3211.1042 L 4117.4616 3210.4842 L 4117.6616 3209.4642 L 4117.6616 3208.8542 L 4117.4616 3207.8242 L 4117.0516 3207.2142 L 4116.4416 3207.0142 L 4116.0316 3207.0142 L 4115.4116 3207.2142 L 4115.0016 3207.8242 L 4114.8016 3208.8542 L 4114.8016 3209.4642 L 4115.0016 3210.4842 L 4115.4116 3211.1042 L 4116.0316 3211.3042 L 4116.4416 3211.3042 M 4113.4516 3208.8542 L 4109.7716 3208.8542 M 4108.4216 3211.3042 L 4108.4216 3207.0142 M 4108.4216 3211.3042 L 4106.5816 3211.3042 L 4105.9616 3211.1042 L 4105.7616 3210.8942 L 4105.5516 3210.4842 L 4105.5516 3210.0742 L 4105.7616 3209.6642 L 4105.9616 3209.4642 L 4106.5816 3209.2642 M 4108.4216 3209.2642 L 4106.5816 3209.2642 L 4105.9616 3209.0542 L 4105.7616 3208.8542 L 4105.5516 3208.4442 L 4105.5516 3207.8242 L 4105.7616 3207.4142 L 4105.9616 3207.2142 L 4106.5816 3207.0142 L 4108.4216 3207.0142 M 4104.2016 3211.3042 L 4104.2016 3207.0142 M 4104.2016 3207.0142 L 4101.7516 3207.0142 M 4100.4016 3208.8542 L 4096.7216 3208.8542 M 4095.3716 3211.3042 L 4095.3716 3207.0142 M 4095.3716 3211.3042 L 4092.7116 3211.3042 M 4095.3716 3209.2642 L 4093.7316 3209.2642 M 4095.3716 3207.0142 L 4092.7116 3207.0142 M 4091.3616 3211.3042 L 4091.3616 3207.0142 M 4091.3616 3211.3042 L 4089.5216 3211.3042 L 4088.9016 3211.1042 L 4088.7016 3210.8942 L 4088.5016 3210.4842 L 4088.5016 3209.8742 L 4088.7016 3209.4642 L 4088.9016 3209.2642 L 4089.5216 3209.0542 L 4091.3616 3209.0542~none~gge101665~~0~#@$TEXT~P~4205.252~3199.764~0.6~180~0~3~~4.5~U19~M 4205.253 3204.309 L 4205.253 3201.239 L 4205.043 3200.619 L 4204.633 3200.219 L 4204.023 3200.009 L 4203.613 3200.009 L 4203.003 3200.219 L 4202.593 3200.619 L 4202.383 3201.239 L 4202.383 3204.309 M 4201.033 3203.489 L 4200.633 3203.689 L 4200.013 3204.309 L 4200.013 3200.009 M 4196.003 3202.869 L 4196.213 3202.259 L 4196.623 3201.849 L 4197.233 3201.649 L 4197.433 3201.649 L 4198.053 3201.849 L 4198.463 3202.259 L 4198.663 3202.869 L 4198.663 3203.079 L 4198.463 3203.689 L 4198.053 3204.099 L 4197.433 3204.309 L 4197.233 3204.309 L 4196.623 3204.099 L 4196.213 3203.689 L 4196.003 3202.869 L 4196.003 3201.849 L 4196.213 3200.829 L 4196.623 3200.219 L 4197.233 3200.009 L 4197.643 3200.009 L 4198.253 3200.219 L 4198.463 3200.619~none~gge101671~~0~#@$CIRCLE~4211.142~3187.843~0.118~0.2362~101~gge101680~0~~#@$CIRCLE~4212.252~3191.764~0.295~0.5906~12~gge101683~0~~#@$SOLIDREGION~100~~M 4209.6453 3187.8429 L 4209.6453 3189.4177 L 4208.7004 3189.4177 L 4208.7004 3187.8429 Z ~solid~gge101686~~~~0#@$SOLIDREGION~100~~M 4207.6768 3187.8429 L 4207.6768 3189.4177 L 4206.7319 3189.4177 L 4206.7319 3187.8429 Z ~solid~gge101689~~~~0#@$SOLIDREGION~100~~M 4205.7083 3187.8429 L 4205.7083 3189.4177 L 4204.7634 3189.4177 L 4204.7634 3187.8429 Z ~solid~gge101692~~~~0#@$SOLIDREGION~100~~M 4203.7398 3187.8429 L 4203.7398 3189.4177 L 4202.7949 3189.4177 L 4202.7949 3187.8429 Z ~solid~gge101695~~~~0#@$SOLIDREGION~100~~M 4201.7713 3187.8429 L 4201.7713 3189.4177 L 4200.8264 3189.4177 L 4200.8264 3187.8429 Z ~solid~gge101698~~~~0#@$SOLIDREGION~100~~M 4199.8028 3187.8429 L 4199.8028 3189.4177 L 4198.8579 3189.4177 L 4198.8579 3187.8429 Z ~solid~gge101701~~~~0#@$SOLIDREGION~100~~M 4198.9366 3191.3075 L 4198.9366 3192.2524 L 4197.3618 3192.2524 L 4197.3618 3191.3075 Z ~solid~gge101704~~~~0#@$SOLIDREGION~100~~M 4198.9366 3193.276 L 4198.9366 3194.2209 L 4197.3618 3194.2209 L 4197.3618 3193.276 Z ~solid~gge101707~~~~0#@$SOLIDREGION~100~~M 4199.8028 3197.6855 L 4199.8028 3196.1107 L 4198.8579 3196.1107 L 4198.8579 3197.6855 Z ~solid~gge101710~~~~0#@$SOLIDREGION~100~~M 4201.7713 3197.6855 L 4201.7713 3196.1107 L 4200.8264 3196.1107 L 4200.8264 3197.6855 Z ~solid~gge101713~~~~0#@$SOLIDREGION~100~~M 4203.7398 3197.6855 L 4203.7398 3196.1107 L 4202.7949 3196.1107 L 4202.7949 3197.6855 Z ~solid~gge101716~~~~0#@$SOLIDREGION~100~~M 4205.7083 3197.6855 L 4205.7083 3196.1107 L 4204.7634 3196.1107 L 4204.7634 3197.6855 Z ~solid~gge101719~~~~0#@$SOLIDREGION~100~~M 4207.6768 3197.6855 L 4207.6768 3196.1107 L 4206.7319 3196.1107 L 4206.7319 3197.6855 Z ~solid~gge101722~~~~0#@$SOLIDREGION~100~~M 4209.6453 3197.6855 L 4209.6453 3196.1107 L 4208.7004 3196.1107 L 4208.7004 3197.6855 Z ~solid~gge101725~~~~0#@$SOLIDREGION~100~~M 4209.5666 3193.276 L 4209.5666 3194.2209 L 4211.1414 3194.2209 L 4211.1414 3193.276 Z ~solid~gge101728~~~~0#@$SOLIDREGION~100~~M 4209.5666 3191.3075 L 4209.5666 3192.2524 L 4211.1414 3192.2524 L 4211.1414 3191.3075 Z ~solid~gge101731~~~~0#@$SOLIDREGION~100~~M 4208.4839 3190.9532 L 4208.4839 3195.028 L 4200.0193 3195.028 L 4200.0193 3190.5004 L 4208.0311 3190.5004 Z ~solid~gge101734~~~~0#@$SOLIDREGION~99~~M 4211.1414 3187.8429 L 4211.1414 3197.6855 L 4197.3618 3197.6855 L 4197.3618 3187.8429 Z ~solid~gge101737~~~~0#@$TRACK~0.6~3~~4211.4414 3195.0496 4211.4414 3197.9855 4210.474 3197.9855~gge101740~0#@$TRACK~0.6~3~~4197.0618 3195.0496 4197.0618 3197.9855 4198.0292 3197.9855~gge101743~0#@$TRACK~0.6~3~~4211.4414 3190.4788 4211.4414 3187.5429 4210.474 3187.5429~gge101746~0#@$TRACK~0.6~3~~4197.0618 3190.4788 4197.0618 3187.5429 4198.0292 3187.5429~gge101749~0#@$CIRCLE~4212.252~3190.264~0.295~0.5906~3~gge101752~0~~#@$SVGNODE~{\"gId\":\"gge102061\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"13.85824\",\"c_height\":\"9.92124\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4204.2515,3192.7641\",\"uuid\":\"785c24efc5da4ba0b38de7c68d6a5913\",\"c_etype\":\"outline3D\",\"title\":\"DQFN-16_L3.5-W2.5-P0.50-BL-EP\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge102061\"},\"childNodes\":[{\"gId\":\"gge102064\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4211.1807 3194.2603 4211.1807 3193.276 4211.1413 3193.276 4211.1413 3192.2918 4211.1807 3192.2918 4211.1807 3191.3075 4211.1413 3191.3075 4211.1413 3189.5752 4211.1413 3189.1815 4211.1413 3189.1028 4211.1413 3188.591 4211.1413 3188.4729 4211.1413 3187.8429 4209.6453 3187.8429 4209.6453 3187.8036 4208.661 3187.8036 4208.661 3187.8429 4207.6768 3187.8429 4207.6768 3187.8036 4206.6925 3187.8036 4206.6925 3187.8429 4205.787 3187.8429 4205.7083 3187.8429 4205.7083 3187.8036 4204.724 3187.8036 4204.724 3187.8429 4203.7398 3187.8429 4203.7398 3187.8036 4202.7555 3187.8036 4202.7555 3187.8429 4201.7713 3187.8429 4201.7713 3187.8036 4200.787 3187.8036 4200.787 3187.8429 4200.4327 3187.8429 4200.0784 3187.8429 4199.8028 3187.8429 4199.8028 3187.8036 4198.8185 3187.8036 4198.8185 3187.8429 4197.3618 3187.8429 4197.3618 3188.4729 4197.3618 3188.591 4197.3618 3189.1028 4197.3618 3189.1815 4197.3618 3189.5752 4197.3618 3191.3075 4197.3225 3191.3075 4197.3225 3192.2918 4197.3618 3192.2918 4197.3618 3193.276 4197.3225 3193.276 4197.3225 3194.2603 4197.3618 3194.2603 4197.3618 3197.6854 4198.8185 3197.6854 4198.8185 3197.7248 4199.8028 3197.7248 4199.8028 3197.6854 4200.0784 3197.6854 4200.4327 3197.6854 4200.787 3197.6854 4200.787 3197.7248 4201.7713 3197.7248 4201.7713 3197.6854 4202.7555 3197.6854 4202.7555 3197.7248 4203.7398 3197.7248 4203.7398 3197.6854 4204.724 3197.6854 4204.724 3197.7248 4205.7083 3197.7248 4205.7083 3197.6854 4205.787 3197.6854 4206.6925 3197.6854 4206.6925 3197.7248 4207.6768 3197.7248 4207.6768 3197.6854 4208.661 3197.6854 4208.661 3197.7248 4209.6453 3197.7248 4209.6453 3197.6854 4211.1413 3197.6854 4211.1413 3194.2603 4211.1807 3194.2603 4211.1807 3194.2603\",\"id\":\"gge102064\"}}]}#@$PAD~RECT~4209.173~3188.207~1.1024~2.6181~1~~2~0~4209.724 3186.8981 4209.724 3189.5162 4208.6217 3189.5162 4208.6217 3186.8981~180~gge101755~0~~Y~0~0.0000~0.2000~4209.1729,3188.2071#@$PAD~RECT~4207.204~3188.207~1.1024~2.6181~1~~3~0~4207.7555 3186.8981 4207.7555 3189.5162 4206.6532 3189.5162 4206.6532 3186.8981~180~gge101773~0~~Y~0~0.0000~0.2000~4207.2044,3188.2071#@$PAD~RECT~4205.236~3188.207~1.1024~2.6181~1~~4~0~4205.787 3186.8981 4205.787 3189.5162 4204.6847 3189.5162 4204.6847 3186.8981~180~gge101791~0~~Y~0~0.0000~0.2000~4205.2359,3188.2071#@$PAD~RECT~4203.267~3188.207~1.1024~2.6181~1~~5~0~4203.8185 3186.8981 4203.8185 3189.5162 4202.7162 3189.5162 4202.7162 3186.8981~180~gge101809~0~~Y~0~0.0000~0.2000~4203.2673,3188.2071#@$PAD~RECT~4201.299~3188.207~1.1024~2.6181~1~~6~0~4201.85 3186.8981 4201.85 3189.5162 4200.7477 3189.5162 4200.7477 3186.8981~180~gge101827~0~~Y~0~0.0000~0.2000~4201.2988,3188.2071#@$PAD~RECT~4199.33~3188.207~1.1024~2.6181~1~A13~7~0~4199.8815 3186.8981 4199.8815 3189.5162 4198.7792 3189.5162 4198.7792 3186.8981~180~gge101845~0~~Y~0~0.0000~0.2000~4199.3303,3188.2071#@$PAD~RECT~4197.726~3191.78~2.6181~1.1024~1~GND~8~0~4196.417 3191.2288 4196.417 3192.3311 4199.0351 3192.3311 4199.0351 3191.2288~180~gge101863~0~~Y~0~0.0000~0.2000~4197.726,3191.7799#@$PAD~RECT~4197.726~3193.748~2.6181~1.1024~1~A12~9~0~4196.417 3193.1973 4196.417 3194.2996 4199.0351 3194.2996 4199.0351 3193.1973~180~gge101881~0~~Y~0~0.0000~0.2000~4197.726,3193.7485#@$PAD~RECT~4199.33~3197.321~1.1024~2.6181~1~A11~10~0~4199.8815 3198.6303 4199.8815 3196.0122 4198.7792 3196.0122 4198.7792 3198.6303~180~gge101899~0~~Y~0~0.0000~0.2000~4199.3303,3197.3213#@$PAD~RECT~4201.299~3197.321~1.1024~2.6181~1~RESET~11~0~4201.85 3198.6303 4201.85 3196.0122 4200.7477 3196.0122 4200.7477 3198.6303~180~gge101917~0~~Y~0~0.0000~0.2000~4201.2988,3197.3213#@$PAD~RECT~4203.267~3197.321~1.1024~2.6181~1~~12~0~4203.8185 3198.6303 4203.8185 3196.0122 4202.7162 3196.0122 4202.7162 3198.6303~180~gge101935~0~~Y~0~0.0000~0.2000~4203.2673,3197.3213#@$PAD~RECT~4205.236~3197.321~1.1024~2.6181~1~~13~0~4205.787 3198.6303 4205.787 3196.0122 4204.6847 3196.0122 4204.6847 3198.6303~180~gge101953~0~~Y~0~0.0000~0.2000~4205.2359,3197.3213#@$PAD~RECT~4207.204~3197.321~1.1024~2.6181~1~~14~0~4207.7555 3198.6303 4207.7555 3196.0122 4206.6532 3196.0122 4206.6532 3198.6303~180~gge101971~0~~Y~0~0.0000~0.2000~4207.2044,3197.3213#@$PAD~RECT~4209.173~3197.321~1.1024~2.6181~1~~15~0~4209.724 3198.6303 4209.724 3196.0122 4208.6217 3196.0122 4208.6217 3198.6303~180~gge101989~0~~Y~0~0.0000~0.2000~4209.1729,3197.3213#@$PAD~RECT~4210.777~3193.748~2.6181~1.1024~1~VCC2~16~0~4209.4681 3193.1973 4209.4681 3194.2996 4212.0862 3194.2996 4212.0862 3193.1973~180~gge102007~0~~Y~0~0.0000~0.2000~4210.7772,3193.7485#@$PAD~RECT~4210.777~3191.78~2.6181~1.1024~1~~1~0~4209.4681 3191.2288 4209.4681 3192.3311 4212.0862 3192.3311 4212.0862 3191.2288~180~gge102025~0~~Y~0~0.0000~0.2000~4210.7772,3191.7799#@$PAD~RECT~4204.252~3192.764~8.4646~4.5276~1~GND~17~0~4208.4839 3190.5004 4208.4839 3195.028 4200.0193 3195.028 4200.0193 3190.5004~180~gge102043~0~~Y~0~0.0000~0.2000~4204.2516,3192.7642",
103 | "LIB~4237.5239~3186.3328~package`VQFN-16_L3.0-W3.0-P0.50-TL-EP`Contributor`立创EDA官方封装库`Supplier`LCSC`Supplier Part`C183029`Manufacturer`ST(意法半导体)`Manufacturer Part`LM324QT`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C183029&%26type=1&ref=editor`3DModel`VQFN-16_L3.0-W3.0-H1.0-P0.50`~90~~gge104165~1~bd683b53aef64cde808ad76a17081028~1652972165~0~~yes~~#@$TEXT~N~4221.996~3186.861~0.6~90~0~3~~4.5~VQFN-16_L3.0-W3.0-P0.50-TL-EP~M 4217.4559 3186.8608 L 4221.7459 3185.2208 M 4217.4559 3183.5908 L 4221.7459 3185.2208 M 4217.4559 3181.0108 L 4217.6559 3181.4208 L 4218.0659 3181.8308 L 4218.4759 3182.0308 L 4219.0959 3182.2408 L 4220.1159 3182.2408 L 4220.7259 3182.0308 L 4221.1359 3181.8308 L 4221.5459 3181.4208 L 4221.7459 3181.0108 L 4221.7459 3180.1908 L 4221.5459 3179.7808 L 4221.1359 3179.3708 L 4220.7259 3179.1708 L 4220.1159 3178.9608 L 4219.0959 3178.9608 L 4218.4759 3179.1708 L 4218.0659 3179.3708 L 4217.6559 3179.7808 L 4217.4559 3180.1908 L 4217.4559 3181.0108 M 4220.9359 3180.4008 L 4222.1559 3179.1708 M 4217.4559 3177.6108 L 4221.7459 3177.6108 M 4217.4559 3177.6108 L 4217.4559 3174.9608 M 4219.4959 3177.6108 L 4219.4959 3175.9808 M 4217.4559 3173.6108 L 4221.7459 3173.6108 M 4217.4559 3173.6108 L 4221.7459 3170.7408 M 4217.4559 3170.7408 L 4221.7459 3170.7408 M 4219.9059 3169.3908 L 4219.9059 3165.7108 M 4218.2759 3164.3608 L 4218.0659 3163.9508 L 4217.4559 3163.3408 L 4221.7459 3163.3408 M 4218.0659 3159.5308 L 4217.6559 3159.7408 L 4217.4559 3160.3508 L 4217.4559 3160.7608 L 4217.6559 3161.3708 L 4218.2759 3161.7808 L 4219.2959 3161.9908 L 4220.3159 3161.9908 L 4221.1359 3161.7808 L 4221.5459 3161.3708 L 4221.7459 3160.7608 L 4221.7459 3160.5608 L 4221.5459 3159.9408 L 4221.1359 3159.5308 L 4220.5259 3159.3308 L 4220.3159 3159.3308 L 4219.7059 3159.5308 L 4219.2959 3159.9408 L 4219.0959 3160.5608 L 4219.0959 3160.7608 L 4219.2959 3161.3708 L 4219.7059 3161.7808 L 4220.3159 3161.9908 M 4223.1859 3157.9808 L 4223.1859 3154.3008 M 4217.4559 3152.9508 L 4221.7459 3152.9508 M 4221.7459 3152.9508 L 4221.7459 3150.4908 M 4217.4559 3148.7308 L 4217.4559 3146.4808 L 4219.0959 3147.7108 L 4219.0959 3147.1008 L 4219.2959 3146.6908 L 4219.4959 3146.4808 L 4220.1159 3146.2808 L 4220.5259 3146.2808 L 4221.1359 3146.4808 L 4221.5459 3146.8908 L 4221.7459 3147.5108 L 4221.7459 3148.1208 L 4221.5459 3148.7308 L 4221.3459 3148.9408 L 4220.9359 3149.1408 M 4220.7259 3144.7208 L 4220.9359 3144.9308 L 4221.1359 3144.7208 L 4220.9359 3144.5208 L 4220.7259 3144.7208 M 4217.4559 3141.9408 L 4217.6559 3142.5608 L 4218.2759 3142.9608 L 4219.2959 3143.1708 L 4219.9059 3143.1708 L 4220.9359 3142.9608 L 4221.5459 3142.5608 L 4221.7459 3141.9408 L 4221.7459 3141.5308 L 4221.5459 3140.9208 L 4220.9359 3140.5108 L 4219.9059 3140.3108 L 4219.2959 3140.3108 L 4218.2759 3140.5108 L 4217.6559 3140.9208 L 4217.4559 3141.5308 L 4217.4559 3141.9408 M 4219.9059 3138.9608 L 4219.9059 3135.2708 M 4217.4559 3133.9208 L 4221.7459 3132.9008 M 4217.4559 3131.8808 L 4221.7459 3132.9008 M 4217.4559 3131.8808 L 4221.7459 3130.8608 M 4217.4559 3129.8308 L 4221.7459 3130.8608 M 4217.4559 3128.0708 L 4217.4559 3125.8208 L 4219.0959 3127.0508 L 4219.0959 3126.4408 L 4219.2959 3126.0308 L 4219.4959 3125.8208 L 4220.1159 3125.6208 L 4220.5259 3125.6208 L 4221.1359 3125.8208 L 4221.5459 3126.2308 L 4221.7459 3126.8508 L 4221.7459 3127.4608 L 4221.5459 3128.0708 L 4221.3459 3128.2808 L 4220.9359 3128.4808 M 4220.7259 3124.0608 L 4220.9359 3124.2708 L 4221.1359 3124.0608 L 4220.9359 3123.8608 L 4220.7259 3124.0608 M 4217.4559 3121.2808 L 4217.6559 3121.9008 L 4218.2759 3122.3108 L 4219.2959 3122.5108 L 4219.9059 3122.5108 L 4220.9359 3122.3108 L 4221.5459 3121.9008 L 4221.7459 3121.2808 L 4221.7459 3120.8708 L 4221.5459 3120.2608 L 4220.9359 3119.8508 L 4219.9059 3119.6508 L 4219.2959 3119.6508 L 4218.2759 3119.8508 L 4217.6559 3120.2608 L 4217.4559 3120.8708 L 4217.4559 3121.2808 M 4219.9059 3118.3008 L 4219.9059 3114.6108 M 4217.4559 3113.2608 L 4221.7459 3113.2608 M 4217.4559 3113.2608 L 4217.4559 3111.4208 L 4217.6559 3110.8108 L 4217.8659 3110.6108 L 4218.2759 3110.4008 L 4218.8859 3110.4008 L 4219.2959 3110.6108 L 4219.4959 3110.8108 L 4219.7059 3111.4208 L 4219.7059 3113.2608 M 4217.4559 3107.8208 L 4217.6559 3108.4408 L 4218.2759 3108.8508 L 4219.2959 3109.0508 L 4219.9059 3109.0508 L 4220.9359 3108.8508 L 4221.5459 3108.4408 L 4221.7459 3107.8208 L 4221.7459 3107.4108 L 4221.5459 3106.8008 L 4220.9359 3106.3908 L 4219.9059 3106.1908 L 4219.2959 3106.1908 L 4218.2759 3106.3908 L 4217.6559 3106.8008 L 4217.4559 3107.4108 L 4217.4559 3107.8208 M 4220.7259 3104.6308 L 4220.9359 3104.8408 L 4221.1359 3104.6308 L 4220.9359 3104.4308 L 4220.7259 3104.6308 M 4217.4559 3100.6208 L 4217.4559 3102.6708 L 4219.2959 3102.8708 L 4219.0959 3102.6708 L 4218.8859 3102.0608 L 4218.8859 3101.4408 L 4219.0959 3100.8308 L 4219.4959 3100.4208 L 4220.1159 3100.2108 L 4220.5259 3100.2108 L 4221.1359 3100.4208 L 4221.5459 3100.8308 L 4221.7459 3101.4408 L 4221.7459 3102.0608 L 4221.5459 3102.6708 L 4221.3459 3102.8708 L 4220.9359 3103.0808 M 4217.4559 3097.6408 L 4217.6559 3098.2508 L 4218.2759 3098.6608 L 4219.2959 3098.8608 L 4219.9059 3098.8608 L 4220.9359 3098.6608 L 4221.5459 3098.2508 L 4221.7459 3097.6408 L 4221.7459 3097.2308 L 4221.5459 3096.6108 L 4220.9359 3096.2108 L 4219.9059 3096.0008 L 4219.2959 3096.0008 L 4218.2759 3096.2108 L 4217.6559 3096.6108 L 4217.4559 3097.2308 L 4217.4559 3097.6408 M 4219.9059 3094.6508 L 4219.9059 3090.9708 M 4217.4559 3088.1908 L 4221.7459 3088.1908 M 4217.4559 3089.6208 L 4217.4559 3086.7608 M 4217.4559 3085.4108 L 4221.7459 3085.4108 M 4221.7459 3085.4108 L 4221.7459 3082.9508 M 4219.9059 3081.6008 L 4219.9059 3077.9208 M 4217.4559 3076.5708 L 4221.7459 3076.5708 M 4217.4559 3076.5708 L 4217.4559 3073.9108 M 4219.4959 3076.5708 L 4219.4959 3074.9308 M 4221.7459 3076.5708 L 4221.7459 3073.9108 M 4217.4559 3072.5608 L 4221.7459 3072.5608 M 4217.4559 3072.5608 L 4217.4559 3070.7208 L 4217.6559 3070.1108 L 4217.8659 3069.9008 L 4218.2759 3069.7008 L 4218.8859 3069.7008 L 4219.2959 3069.9008 L 4219.4959 3070.1108 L 4219.7059 3070.7208 L 4219.7059 3072.5608~none~gge103757~~0~#@$TEXT~P~4228.996~3186.861~0.6~90~0~3~~4.5~U3~M 4224.4563 3186.8583 L 4227.5263 3186.8583 L 4228.1363 3186.6583 L 4228.5463 3186.2483 L 4228.7463 3185.6383 L 4228.7463 3185.2283 L 4228.5463 3184.6083 L 4228.1363 3184.1983 L 4227.5263 3183.9983 L 4224.4563 3183.9983 M 4224.4563 3182.2383 L 4224.4563 3179.9883 L 4226.0963 3181.2183 L 4226.0963 3180.5983 L 4226.2963 3180.1883 L 4226.4963 3179.9883 L 4227.1163 3179.7883 L 4227.5263 3179.7883 L 4228.1363 3179.9883 L 4228.5463 3180.3983 L 4228.7463 3181.0083 L 4228.7463 3181.6283 L 4228.5463 3182.2383 L 4228.3463 3182.4383 L 4227.9363 3182.6483~none~gge103763~~0~#@$CIRCLE~4231.815~3192.042~0.197~0.3937~101~gge103769~0~~#@$CIRCLE~4234.571~3193.223~0.394~0.7874~12~gge103772~0~~#@$SOLIDREGION~99~~M 4243.429 3192.2387 L 4231.618 3192.2387 L 4231.618 3180.4277 L 4243.429 3180.4277 Z~solid~gge103775~~~~0#@$TRACK~0.4~3~~4243.4287 3182.2217 4243.4287 3180.4274~gge103778~0#@$TRACK~0.4~3~~4243.4287 3192.2384 4243.4287 3190.4441~gge103781~0#@$TRACK~0.4~3~~4231.6177 3190.4441 4231.6177 3192.2384~gge103784~0#@$TRACK~0.4~3~~4231.6177 3180.4274 4231.6177 3182.2217~gge103787~0#@$TRACK~0.4~3~~4241.6344 3192.2384 4243.4287 3192.2384~gge103790~0#@$TRACK~0.4~3~~4231.6177 3192.2384 4233.412 3192.2384~gge103793~0#@$TRACK~0.4~3~~4241.6344 3180.4274 4243.4287 3180.4274~gge103796~0#@$TRACK~0.4~3~~4231.6177 3180.4274 4233.412 3180.4274~gge103799~0#@$ARC~0.98425~3~~M 4232.597 3193.1835 A 0.0394 0.0394 0 1 0 4232.607 3193.1835~~gge103802~0#@$SOLIDREGION~5~~M 4235.0045 3188.8528 L 4235.0045 3183.8134 L 4240.0439 3183.8134 L 4240.0439 3188.8528 Z~solid~gge103805~~~~0#@$SOLIDREGION~5~~M 4230.9912 3189.8339 A 0.5512 0.5512 0 0 1 4230.9912 3188.7312 L 4233.0383 3188.7312 A 0.5512 0.5512 0 0 1 4233.0383 3189.8339 Z~solid~gge103808~~~~0#@$SOLIDREGION~5~~M 4230.9912 3187.8639 A 0.5512 0.5512 0 0 1 4230.9912 3186.7612 L 4233.0383 3186.7612 A 0.5512 0.5512 0 0 1 4233.0383 3187.8639 Z~solid~gge103811~~~~0#@$SOLIDREGION~5~~M 4230.9912 3185.9042 A 0.5512 0.5512 0 0 1 4230.9912 3184.8014 L 4233.0383 3184.8014 A 0.5512 0.5512 0 0 1 4233.0383 3185.9042 Z~solid~gge103814~~~~0#@$SOLIDREGION~5~~M 4230.9912 3183.9341 A 0.5512 0.5512 0 0 1 4230.9912 3182.8314 L 4233.0383 3182.8314 A 0.5512 0.5512 0 0 1 4233.0383 3183.9341 Z~solid~gge103817~~~~0#@$SOLIDREGION~5~~M 4235.1259 3181.8459 A 0.5512 0.5512 0 0 1 4234.0233 3181.8459 L 4234.0233 3179.7988 A 0.5512 0.5512 0 0 1 4235.1259 3179.7988 Z~solid~gge103820~~~~0#@$SOLIDREGION~5~~M 4237.0959 3181.8459 A 0.5512 0.5512 0 0 1 4235.9934 3181.8459 L 4235.9934 3179.7988 A 0.5512 0.5512 0 0 1 4237.0959 3179.7988 Z~solid~gge103823~~~~0#@$SOLIDREGION~5~~M 4239.0559 3181.8459 A 0.5512 0.5512 0 0 1 4237.9531 3181.8459 L 4237.9531 3179.7988 A 0.5512 0.5512 0 0 1 4239.0559 3179.7988 Z~solid~gge103826~~~~0#@$SOLIDREGION~5~~M 4241.0259 3181.8459 A 0.5512 0.5512 0 0 1 4239.9232 3181.8459 L 4239.9232 3179.7988 A 0.5512 0.5512 0 0 1 4241.0259 3179.7988 Z~solid~gge103829~~~~0#@$SOLIDREGION~5~~M 4242.011 3183.9341 A 0.5512 0.5512 0 0 1 4242.011 3182.8314 L 4244.0583 3182.8314 A 0.5512 0.5512 0 0 1 4244.0583 3183.9341 Z~solid~gge103832~~~~0#@$SOLIDREGION~5~~M 4242.011 3185.9042 A 0.5512 0.5512 0 0 1 4242.011 3184.8014 L 4244.0583 3184.8014 A 0.5512 0.5512 0 0 1 4244.0583 3185.9042 Z~solid~gge103835~~~~0#@$SOLIDREGION~5~~M 4242.011 3187.8639 A 0.5512 0.5512 0 0 1 4242.011 3186.7612 L 4244.0583 3186.7612 A 0.5512 0.5512 0 0 1 4244.0583 3187.8639 Z~solid~gge103838~~~~0#@$SOLIDREGION~5~~M 4242.011 3189.8339 A 0.5512 0.5512 0 0 1 4242.011 3188.7312 L 4244.0583 3188.7312 A 0.5512 0.5512 0 0 1 4244.0583 3189.8339 Z~solid~gge103841~~~~0#@$SOLIDREGION~5~~M 4241.0259 3192.8665 A 0.5512 0.5512 0 0 1 4239.9232 3192.8665 L 4239.9232 3190.8185 A 0.5512 0.5512 0 0 1 4241.0259 3190.8185 Z~solid~gge103844~~~~0#@$SOLIDREGION~5~~M 4239.0559 3192.8665 A 0.5512 0.5512 0 0 1 4237.9531 3192.8665 L 4237.9531 3190.8185 A 0.5512 0.5512 0 0 1 4239.0559 3190.8185 Z~solid~gge103847~~~~0#@$SOLIDREGION~5~~M 4237.0959 3192.8665 A 0.5512 0.5512 0 0 1 4235.9934 3192.8665 L 4235.9934 3190.8185 A 0.5512 0.5512 0 0 1 4237.0959 3190.8185 Z~solid~gge103850~~~~0#@$SOLIDREGION~5~~M 4235.1259 3192.8665 A 0.5512 0.5512 0 0 1 4234.0233 3192.8665 L 4234.0233 3190.8185 A 0.5512 0.5512 0 0 1 4235.1259 3190.8185 Z~solid~gge103853~~~~0#@$SOLIDREGION~100~~M 4234.3739 3189.4828 L 4234.3739 3183.1836 L 4240.6731 3183.1836 L 4240.6731 3189.4828 Z~solid~gge103856~~~~0#@$SOLIDREGION~100~~M 4234.0818 3190.6639 L 4235.066 3190.6639 L 4235.066 3192.2387 L 4234.0818 3192.2387 Z~solid~gge103859~~~~0#@$SOLIDREGION~100~~M 4236.0518 3190.6639 L 4237.036 3190.6639 L 4237.036 3192.2387 L 4236.0518 3192.2387 Z~solid~gge103862~~~~0#@$SOLIDREGION~100~~M 4238.0118 3190.6639 L 4238.996 3190.6639 L 4238.996 3192.2387 L 4238.0118 3192.2387 Z~solid~gge103865~~~~0#@$SOLIDREGION~100~~M 4239.9818 3190.6639 L 4240.966 3190.6639 L 4240.966 3192.2387 L 4239.9818 3192.2387 Z~solid~gge103868~~~~0#@$SOLIDREGION~100~~M 4241.8542 3189.7749 L 4241.8542 3188.7907 L 4243.429 3188.7907 L 4243.429 3189.7749 Z~solid~gge103871~~~~0#@$SOLIDREGION~100~~M 4241.8542 3187.8049 L 4241.8542 3186.8207 L 4243.429 3186.8207 L 4243.429 3187.8049 Z~solid~gge103874~~~~0#@$SOLIDREGION~100~~M 4241.8542 3185.8449 L 4241.8542 3184.8607 L 4243.429 3184.8607 L 4243.429 3185.8449 Z~solid~gge103877~~~~0#@$SOLIDREGION~100~~M 4241.8542 3183.8749 L 4241.8542 3182.8907 L 4243.429 3182.8907 L 4243.429 3183.8749 Z~solid~gge103880~~~~0#@$SOLIDREGION~100~~M 4239.9818 3180.4277 L 4240.966 3180.4277 L 4240.966 3182.0025 L 4239.9818 3182.0025 Z~solid~gge103883~~~~0#@$SOLIDREGION~100~~M 4238.0118 3180.4277 L 4238.996 3180.4277 L 4238.996 3182.0025 L 4238.0118 3182.0025 Z~solid~gge103886~~~~0#@$SOLIDREGION~100~~M 4236.0518 3180.4277 L 4237.036 3180.4277 L 4237.036 3182.0025 L 4236.0518 3182.0025 Z~solid~gge103889~~~~0#@$SOLIDREGION~100~~M 4234.0818 3180.4277 L 4235.066 3180.4277 L 4235.066 3182.0025 L 4234.0818 3182.0025 Z~solid~gge103892~~~~0#@$SOLIDREGION~100~~M 4231.618 3183.8749 L 4231.618 3182.8907 L 4233.1928 3182.8907 L 4233.1928 3183.8749 Z~solid~gge103895~~~~0#@$SOLIDREGION~100~~M 4231.618 3185.8449 L 4231.618 3184.8607 L 4233.1928 3184.8607 L 4233.1928 3185.8449 Z~solid~gge103898~~~~0#@$SOLIDREGION~100~~M 4231.618 3187.8049 L 4231.618 3186.8207 L 4233.1928 3186.8207 L 4233.1928 3187.8049 Z~solid~gge103901~~~~0#@$SOLIDREGION~100~~M 4231.618 3189.7749 L 4231.618 3188.7907 L 4233.1928 3188.7907 L 4233.1928 3189.7749 Z~solid~gge103904~~~~0#@$SVGNODE~{\"gId\":\"gge104165_outline\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"11.88974\",\"c_height\":\"11.88974\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4237.5236,3186.5301\",\"uuid\":\"3393915cc74240b786c7d7578739d4d7\",\"c_etype\":\"outline3D\",\"title\":\"VQFN-16_L3.0-W3.0-H1.0-P0.50\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge104165_outline\"},\"childNodes\":[{\"gId\":\"gge104165_outline_line0\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4234.177 3192.475 4234.9644 3192.475 4234.9644 3192.4356 4236.1455 3192.4356 4236.1455 3192.475 4236.9329 3192.475 4236.9329 3192.4356 4237.9172 3192.4356 4238.114 3192.4356 4238.114 3192.475 4238.9014 3192.475 4238.9014 3192.4356 4240.0825 3192.4356 4240.0825 3192.475 4240.8699 3192.475 4240.8699 3192.4356 4243.429 3192.4356 4243.429 3190.5852 4243.429 3189.8765 4243.4684 3189.8765 4243.4684 3189.0891 4243.429 3189.0891 4243.429 3188.8923 4243.429 3188.1049 4243.429 3187.908 4243.4684 3187.908 4243.4684 3187.1206 4243.429 3187.1206 4243.429 3186.3332 4243.429 3186.1364 4243.429 3185.9395 4243.4684 3185.9395 4243.4684 3185.1521 4243.429 3185.1521 4243.429 3184.9553 4243.429 3184.6797 4243.429 3184.1679 4243.429 3183.971 4243.4684 3183.971 4243.4684 3183.1836 4243.429 3183.1836 4243.429 3181.4907 4243.429 3180.6246 4240.8699 3180.6246 4240.8699 3180.5852 4240.0825 3180.5852 4240.0825 3180.6246 4238.9014 3180.6246 4238.9014 3180.5852 4238.114 3180.5852 4238.114 3180.6246 4237.9172 3180.6246 4236.9329 3180.6246 4236.9329 3180.5852 4236.1455 3180.5852 4236.1455 3180.6246 4234.9644 3180.6246 4234.9644 3180.5852 4234.177 3180.5852 4234.177 3180.6246 4231.618 3180.6246 4231.618 3181.4907 4231.618 3183.1836 4231.5786 3183.1836 4231.5786 3183.971 4231.618 3183.971 4231.618 3184.6797 4231.618 3185.1521 4231.5786 3185.1521 4231.5786 3185.9395 4231.618 3185.9395 4231.618 3186.1364 4231.618 3186.3332 4231.618 3187.1206 4231.5786 3187.1206 4231.5786 3187.908 4231.618 3187.908 4231.618 3189.0891 4231.5786 3189.0891 4231.5786 3189.8765 4231.618 3189.8765 4231.618 3190.5852 4231.618 3192.4356 4234.177 3192.4356 4234.177 3192.475 4234.177 3192.475\",\"id\":\"gge104165_outline_line0\"}}]}#@$PAD~RECT~4237.523~3186.333~6.2992~6.2992~1~GND~17~0~4234.3739 3189.4828 4234.3739 3183.1836 4240.6731 3183.1836 4240.6731 3189.4828~90~gge103913~0~~Y~0~-393.7~0.2~4237.5232,3186.3329#@$PAD~OVAL~4232.014~3189.283~1.1024~3.1496~1~I-~16~0~4230.9904 3189.283 4233.0376 3189.283~90~gge103925~0~~Y~0~-393.7~0.2~4232.0139,3189.2828#@$PAD~OVAL~4232.014~3187.313~1.1024~3.1496~1~OUT~15~0~4230.9904 3187.313 4233.0376 3187.313~90~gge103940~0~~Y~0~-393.7~0.2~4232.0139,3187.3128#@$PAD~OVAL~4232.014~3185.353~1.1024~3.1496~1~~14~0~4230.9904 3185.353 4233.0376 3185.353~90~gge103955~0~~Y~0~-393.7~0.2~4232.0139,3185.3528#@$PAD~OVAL~4232.014~3183.383~1.1024~3.1496~1~~13~0~4230.9904 3183.383 4233.0376 3183.383~90~gge103970~0~~Y~0~-393.7~0.2~4232.0139,3183.3828#@$PAD~OVAL~4234.574~3180.823~1.1024~3.1496~1~~12~0~4234.574 3181.8466 4234.574 3179.7994~180~gge103985~0~~Y~0~-393.7~0.2~4234.5739,3180.8228#@$PAD~OVAL~4236.544~3180.823~1.1024~3.1496~1~GND~11~0~4236.544 3181.8466 4236.544 3179.7994~180~gge104000~0~~Y~0~-393.7~0.2~4236.5439,3180.8228#@$PAD~OVAL~4238.504~3180.823~1.1024~3.1496~1~GND~10~0~4238.504 3181.8466 4238.504 3179.7994~180~gge104015~0~~Y~0~-393.7~0.2~4238.5039,3180.8228#@$PAD~OVAL~4240.474~3180.823~1.1024~3.1496~1~~9~0~4240.474 3181.8466 4240.474 3179.7994~180~gge104030~0~~Y~0~-393.7~0.2~4240.4739,3180.8228#@$PAD~OVAL~4243.034~3183.383~1.1024~3.1496~1~~8~0~4242.0104 3183.383 4244.0576 3183.383~90~gge104045~0~~Y~0~-393.7~0.2~4243.0339,3183.3828#@$PAD~OVAL~4243.034~3185.353~1.1024~3.1496~1~~7~0~4242.0104 3185.353 4244.0576 3185.353~90~gge104060~0~~Y~0~-393.7~0.2~4243.0339,3185.3528#@$PAD~OVAL~4243.034~3187.313~1.1024~3.1496~1~~6~0~4242.0104 3187.313 4244.0576 3187.313~90~gge104075~0~~Y~0~-393.7~0.2~4243.0339,3187.3128#@$PAD~OVAL~4243.034~3189.283~1.1024~3.1496~1~~5~0~4242.0104 3189.283 4244.0576 3189.283~90~gge104090~0~~Y~0~-393.7~0.2~4243.0339,3189.2828#@$PAD~OVAL~4240.474~3191.843~1.1024~3.1496~1~~4~0~4240.474 3192.8666 4240.474 3190.8194~180~gge104105~0~~Y~0~-393.7~0.2~4240.4739,3191.8428#@$PAD~OVAL~4238.504~3191.843~1.1024~3.1496~1~GND~3~0~4238.504 3192.8666 4238.504 3190.8194~180~gge104120~0~~Y~0~-393.7~0.2~4238.5039,3191.8428#@$PAD~OVAL~4236.544~3191.843~1.1024~3.1496~1~VCC1~2~0~4236.544 3192.8666 4236.544 3190.8194~180~gge104135~0~~Y~0~-393.7~0.2~4236.5439,3191.8428#@$PAD~OVAL~4234.574~3191.843~1.1024~3.1496~1~DF~1~0~4234.574 3192.8666 4234.574 3190.8194~180~gge104150~0~~Y~0~-393.7~0.2~4234.5739,3191.8428",
104 | "LIB~4239.1485~3196.6701~package`CAP-SMD_L1.0-W0.5`nameAlias`Value`Contributor`lcsc`Supplier`LCSC`Supplier Part`C209647`Manufacturer`ROHM(罗姆)`Manufacturer Part`TCTU1D334M8R`Value`1uf`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C209647&%26type=1&ref=editor`3DModel`CAP-SMD_L1.0-W0.5-H0.6`~180~~gge6748cc795b52b52b~1~d6e2cd2205a244569a36d509a7e5b3a8~1638324339~0~~yes~~#@$TEXT~N~4240.318~3206.67~0.6~180~0~3~~4.5~CAP-SMD_L1.0-W0.5~M 4237.2485 3210.1901 L 4237.4585 3210.6001 L 4237.8685 3211.0101 L 4238.2685 3211.2101 L 4239.0885 3211.2101 L 4239.4985 3211.0101 L 4239.9085 3210.6001 L 4240.1185 3210.1901 L 4240.3185 3209.5701 L 4240.3185 3208.5501 L 4240.1185 3207.9401 L 4239.9085 3207.5301 L 4239.4985 3207.1201 L 4239.0885 3206.9201 L 4238.2685 3206.9201 L 4237.8685 3207.1201 L 4237.4585 3207.5301 L 4237.2485 3207.9401 M 4234.2685 3211.2101 L 4235.8985 3206.9201 M 4234.2685 3211.2101 L 4232.6285 3206.9201 M 4235.2885 3208.3501 L 4233.2385 3208.3501 M 4231.2785 3211.2101 L 4231.2785 3206.9201 M 4231.2785 3211.2101 L 4229.4385 3211.2101 L 4228.8185 3211.0101 L 4228.6185 3210.8001 L 4228.4185 3210.3901 L 4228.4185 3209.7801 L 4228.6185 3209.3701 L 4228.8185 3209.1701 L 4229.4385 3208.9601 L 4231.2785 3208.9601 M 4227.0685 3208.7601 L 4223.3785 3208.7601 M 4219.1685 3210.6001 L 4219.5785 3211.0101 L 4220.1885 3211.2101 L 4221.0085 3211.2101 L 4221.6185 3211.0101 L 4222.0285 3210.6001 L 4222.0285 3210.1901 L 4221.8285 3209.7801 L 4221.6185 3209.5701 L 4221.2185 3209.3701 L 4219.9885 3208.9601 L 4219.5785 3208.7601 L 4219.3685 3208.5501 L 4219.1685 3208.1401 L 4219.1685 3207.5301 L 4219.5785 3207.1201 L 4220.1885 3206.9201 L 4221.0085 3206.9201 L 4221.6185 3207.1201 L 4222.0285 3207.5301 M 4217.8185 3211.2101 L 4217.8185 3206.9201 M 4217.8185 3211.2101 L 4216.1785 3206.9201 M 4214.5485 3211.2101 L 4216.1785 3206.9201 M 4214.5485 3211.2101 L 4214.5485 3206.9201 M 4213.1985 3211.2101 L 4213.1985 3206.9201 M 4213.1985 3211.2101 L 4211.7685 3211.2101 L 4211.1485 3211.0101 L 4210.7385 3210.6001 L 4210.5385 3210.1901 L 4210.3285 3209.5701 L 4210.3285 3208.5501 L 4210.5385 3207.9401 L 4210.7385 3207.5301 L 4211.1485 3207.1201 L 4211.7685 3206.9201 L 4213.1985 3206.9201 M 4208.9785 3205.4801 L 4205.2985 3205.4801 M 4203.9485 3211.2101 L 4203.9485 3206.9201 M 4203.9485 3206.9201 L 4201.4985 3206.9201 M 4200.1485 3210.3901 L 4199.7385 3210.6001 L 4199.1185 3211.2101 L 4199.1185 3206.9201 M 4197.5685 3207.9401 L 4197.7685 3207.7301 L 4197.5685 3207.5301 L 4197.3685 3207.7301 L 4197.5685 3207.9401 M 4194.7885 3211.2101 L 4195.3985 3211.0101 L 4195.8085 3210.3901 L 4196.0185 3209.3701 L 4196.0185 3208.7601 L 4195.8085 3207.7301 L 4195.3985 3207.1201 L 4194.7885 3206.9201 L 4194.3785 3206.9201 L 4193.7685 3207.1201 L 4193.3585 3207.7301 L 4193.1485 3208.7601 L 4193.1485 3209.3701 L 4193.3585 3210.3901 L 4193.7685 3211.0101 L 4194.3785 3211.2101 L 4194.7885 3211.2101 M 4191.7985 3208.7601 L 4188.1185 3208.7601 M 4186.7685 3211.2101 L 4185.7485 3206.9201 M 4184.7185 3211.2101 L 4185.7485 3206.9201 M 4184.7185 3211.2101 L 4183.6985 3206.9201 M 4182.6785 3211.2101 L 4183.6985 3206.9201 M 4180.0985 3211.2101 L 4180.7185 3211.0101 L 4181.1185 3210.3901 L 4181.3285 3209.3701 L 4181.3285 3208.7601 L 4181.1185 3207.7301 L 4180.7185 3207.1201 L 4180.0985 3206.9201 L 4179.6885 3206.9201 L 4179.0785 3207.1201 L 4178.6685 3207.7301 L 4178.4685 3208.7601 L 4178.4685 3209.3701 L 4178.6685 3210.3901 L 4179.0785 3211.0101 L 4179.6885 3211.2101 L 4180.0985 3211.2101 M 4176.9085 3207.9401 L 4177.1185 3207.7301 L 4176.9085 3207.5301 L 4176.7085 3207.7301 L 4176.9085 3207.9401 M 4172.8985 3211.2101 L 4174.9485 3211.2101 L 4175.1485 3209.3701 L 4174.9485 3209.5701 L 4174.3285 3209.7801 L 4173.7185 3209.7801 L 4173.1085 3209.5701 L 4172.6985 3209.1701 L 4172.4885 3208.5501 L 4172.4885 3208.1401 L 4172.6985 3207.5301 L 4173.1085 3207.1201 L 4173.7185 3206.9201 L 4174.3285 3206.9201 L 4174.9485 3207.1201 L 4175.1485 3207.3201 L 4175.3585 3207.7301~none~gge105017~~0~#@$TEXT~P~4249.148~3193.67~0.6~180~0~3~~4.5~U9~M 4249.1486 3198.2087 L 4249.1486 3195.1387 L 4248.9486 3194.5287 L 4248.5386 3194.1187 L 4247.9186 3193.9187 L 4247.5086 3193.9187 L 4246.8986 3194.1187 L 4246.4886 3194.5287 L 4246.2886 3195.1387 L 4246.2886 3198.2087 M 4242.2786 3196.7787 L 4242.4786 3196.1687 L 4242.8886 3195.7587 L 4243.4986 3195.5487 L 4243.7086 3195.5487 L 4244.3186 3195.7587 L 4244.7286 3196.1687 L 4244.9386 3196.7787 L 4244.9386 3196.9887 L 4244.7286 3197.5987 L 4244.3186 3198.0087 L 4243.7086 3198.2087 L 4243.4986 3198.2087 L 4242.8886 3198.0087 L 4242.4786 3197.5987 L 4242.2786 3196.7787 L 4242.2786 3195.7587 L 4242.4786 3194.7387 L 4242.8886 3194.1187 L 4243.4986 3193.9187 L 4243.9086 3193.9187 L 4244.5286 3194.1187 L 4244.7286 3194.5287~none~gge105023~~0~#@$CIRCLE~4241.116~3195.686~0.118~0.2362~101~gge105029~0~~#@$SOLIDREGION~99~~M 4241.1169 3195.6859 L 4241.1169 3197.6544 L 4237.1799 3197.6544 L 4237.1799 3195.6859 Z ~solid~gge105032~~~~0#@$TRACK~0.4~3~~4240.2485 3198.3701 4242.9485 3198.3701 4243.2485 3198.0701 4243.2485 3195.2701 4242.9485 3194.9701 4242.4485 3194.9701~gge105035~0#@$TRACK~0.4~3~~4238.3785 3194.9701 4235.9785 3194.9701 4235.9785 3198.3701 4238.0785 3198.3701 4238.3785 3198.3701~gge105038~0#@$TRACK~0.4~3~~4240.0485 3198.3701 4242.5485 3198.3701 4242.5485 3194.9701 4240.4485 3194.9701 4240.0485 3194.9701~gge105041~0#@$SOLIDREGION~12~~M 4241.9044 3196.8669 L 4241.9044 3196.4733 L 4240.7233 3196.4733 L 4240.7233 3196.8669 Z ~solid~gge105044~~~~0#@$SOLIDREGION~12~~M 4241.5103 3196.0792 L 4241.1167 3196.0792 L 4241.1167 3197.2603 L 4241.5103 3197.2603 Z ~solid~gge105047~~~~0#@$SOLIDREGION~12~~M 4237.5737 3196.8669 L 4237.5737 3196.4733 L 4236.3926 3196.4733 L 4236.3926 3196.8669 Z ~solid~gge105050~~~~0#@$SOLIDREGION~12~~M 4242.1012 3197.4575 L 4241.7075 3197.4575 L 4241.7078 3198.4413 L 4242.1014 3198.4413 Z ~solid~gge105053~~~~0#@$SOLIDREGION~12~~M 4242.1012 3194.8984 L 4241.708 3194.8984 L 4241.7075 3195.8827 L 4242.1012 3195.8827 Z ~solid~gge105056~~~~0#@$SOLIDREGION~100~~M 4238.361 3197.3591 L 4236.983 3197.3591 L 4236.983 3195.9811 L 4238.361 3195.9811 Z ~solid~gge105059~~~~0#@$SOLIDREGION~100~~M 4241.1169 3197.3591 L 4239.7389 3197.3591 L 4239.7389 3195.9811 L 4241.1169 3195.9811 Z ~solid~gge105062~~~~0#@$SVGNODE~{\"gId\":\"gge105065\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"4.3307\",\"c_height\":\"1.9685\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4239.1487,3196.6699\",\"uuid\":\"db965819f32b4ad79fd5b088f13cfa9b\",\"c_etype\":\"outline3D\",\"title\":\"CAP-SMD_L1.0-W0.5-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge105065\"},\"childNodes\":[{\"gId\":\"gge105068\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4241.3139 3197.3788 4241.3139 3196.0008 4241.117 3196.0008 4241.117 3195.804 4241.117 3195.7252 4241.117 3195.6858 4241.0776 3195.6858 4240.9989 3195.6858 4239.2272 3195.6858 4237.2587 3195.6858 4237.2194 3195.6858 4237.18 3195.6858 4237.18 3195.7646 4237.18 3195.804 4237.18 3196.0008 4236.9832 3196.0008 4236.9832 3197.3788 4237.18 3197.3788 4237.18 3197.5362 4237.18 3197.615 4237.18 3197.6543 4237.2194 3197.6543 4237.2981 3197.6543 4239.2272 3197.6543 4241.0383 3197.6543 4241.0776 3197.6543 4241.117 3197.6543 4241.117 3197.5756 4241.117 3197.5362 4241.117 3197.3788 4241.3139 3197.3788 4241.3139 3197.3788\",\"id\":\"gge105068\"}}]}#@$PAD~RECT~4240.818~3196.67~2.362~2.559~1~GND~1~0~4241.9995 3197.9491 4239.6375 3197.9491 4239.6375 3195.3911 4241.9995 3195.3911~180~gge105071~0~~Y~0~0~0.2~4240.8185,3196.6701#@$PAD~RECT~4237.478~3196.67~2.362~2.559~1~VCC1~2~0~4238.6595 3197.9491 4236.2975 3197.9491 4236.2975 3195.3911 4238.6595 3195.3911~180~gge105089~0~~Y~0~0~0.2~4237.4785,3196.6701",
105 | "LIB~4227.4799~3188.4335~package`R0402`Contributor`lcsc`nameAlias`Value`Supplier`LCSC`Supplier Part`C365051`Manufacturer`RESI(开步睿思)`Manufacturer Part`HPCR0402F75R0K9`Value`47k`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C365051&%26type=1&ref=editor`3DModel`R0402_L1.0-W0.5-H0.5`~270~~gge046653570cca7ca7~1~fafd024f554e426eb74cf4a204aa88b0~1670641503~0~~yes~~#@$TEXT~N~4237.48~3188.434~0.6~270~0~3~~4.5~R0402~M 4242.0199 3188.4335 L 4237.7299 3188.4335 M 4242.0199 3188.4335 L 4242.0199 3190.2735 L 4241.8199 3190.8835 L 4241.6099 3191.0935 L 4241.1999 3191.2935 L 4240.7899 3191.2935 L 4240.3799 3191.0935 L 4240.1799 3190.8835 L 4239.9799 3190.2735 L 4239.9799 3188.4335 M 4239.9799 3189.8635 L 4237.7299 3191.2935 M 4242.0199 3193.8735 L 4241.8199 3193.2635 L 4241.1999 3192.8535 L 4240.1799 3192.6435 L 4239.5699 3192.6435 L 4238.5399 3192.8535 L 4237.9299 3193.2635 L 4237.7299 3193.8735 L 4237.7299 3194.2835 L 4237.9299 3194.8935 L 4238.5399 3195.3035 L 4239.5699 3195.5135 L 4240.1799 3195.5135 L 4241.1999 3195.3035 L 4241.8199 3194.8935 L 4242.0199 3194.2835 L 4242.0199 3193.8735 M 4242.0199 3198.9035 L 4239.1599 3196.8635 L 4239.1599 3199.9335 M 4242.0199 3198.9035 L 4237.7299 3198.9035 M 4242.0199 3202.5035 L 4241.8199 3201.8935 L 4241.1999 3201.4835 L 4240.1799 3201.2835 L 4239.5699 3201.2835 L 4238.5399 3201.4835 L 4237.9299 3201.8935 L 4237.7299 3202.5035 L 4237.7299 3202.9135 L 4237.9299 3203.5335 L 4238.5399 3203.9335 L 4239.5699 3204.1435 L 4240.1799 3204.1435 L 4241.1999 3203.9335 L 4241.8199 3203.5335 L 4242.0199 3202.9135 L 4242.0199 3202.5035 M 4240.9999 3205.6935 L 4241.1999 3205.6935 L 4241.6099 3205.9035 L 4241.8199 3206.1035 L 4242.0199 3206.5135 L 4242.0199 3207.3335 L 4241.8199 3207.7435 L 4241.6099 3207.9435 L 4241.1999 3208.1535 L 4240.7899 3208.1535 L 4240.3799 3207.9435 L 4239.7699 3207.5335 L 4237.7299 3205.4935 L 4237.7299 3208.3535~none~gge104600~~0~#@$TEXT~P~4229.83~3183.284~0.6~90~0~3~~4.5~R6~M 4225.2899 3183.2835 L 4229.5799 3183.2835 M 4225.2899 3183.2835 L 4225.2899 3181.4435 L 4225.4899 3180.8335 L 4225.6999 3180.6235 L 4226.1099 3180.4235 L 4226.5199 3180.4235 L 4226.9299 3180.6235 L 4227.1299 3180.8335 L 4227.3299 3181.4435 L 4227.3299 3183.2835 M 4227.3299 3181.8535 L 4229.5799 3180.4235 M 4225.8999 3176.6135 L 4225.4899 3176.8235 L 4225.2899 3177.4335 L 4225.2899 3177.8435 L 4225.4899 3178.4535 L 4226.1099 3178.8635 L 4227.1299 3179.0735 L 4228.1499 3179.0735 L 4228.9699 3178.8635 L 4229.3799 3178.4535 L 4229.5799 3177.8435 L 4229.5799 3177.6335 L 4229.3799 3177.0235 L 4228.9699 3176.6135 L 4228.3599 3176.4135 L 4228.1499 3176.4135 L 4227.5399 3176.6135 L 4227.1299 3177.0235 L 4226.9299 3177.6335 L 4226.9299 3177.8435 L 4227.1299 3178.4535 L 4227.5399 3178.8635 L 4228.1499 3179.0735~none~gge104606~~0~#@$SOLIDREGION~100~~M 4226.4957 3189.4235 L 4228.4643 3189.4235 L 4228.4643 3190.4077 L 4226.4957 3190.4077 Z ~solid~gge104612~~~~0#@$SOLIDREGION~100~~M 4228.4643 3187.4535 L 4226.4957 3187.4535 L 4226.4957 3186.4693 L 4228.4643 3186.4693 Z ~solid~gge104615~~~~0#@$SOLIDREGION~99~~M 4226.4957 3186.465 L 4228.4642 3186.465 L 4228.4642 3190.402 L 4226.4957 3190.402 Z ~solid~gge104618~~~~0#@$SOLIDREGION~5~~M 4226.5744 3188.965 L 4228.3854 3188.965 L 4228.5429 3189.1225 L 4228.5429 3191.0935 L 4228.3854 3191.251 L 4226.5744 3191.251 L 4226.4169 3191.0935 L 4226.4169 3189.1225 Z ~solid~gge104621~~~~0#@$SOLIDREGION~5~~M 4226.5744 3187.902 L 4228.3854 3187.902 L 4228.5429 3187.7445 L 4228.5429 3185.7735 L 4228.3854 3185.616 L 4226.5744 3185.616 L 4226.4169 3185.7735 L 4226.4169 3187.7445 Z ~solid~gge104624~~~~0#@$TRACK~0.6~3~~4225.5169 3187.5429 4225.5169 3184.716 4229.4429 3184.716 4229.4429 3187.5429~gge104627~0#@$TRACK~0.6~3~~4225.5169 3189.3241 4225.5169 3192.151 4229.4429 3192.151 4229.4429 3189.3241~gge104630~0#@$CIRCLE~4226.496~3186.466~0.118~0.2362~101~gge104633~0~~#@$SVGNODE~{\"gId\":\"gge104636\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"3.937\",\"c_height\":\"1.9685\",\"c_rotation\":\"0,0,270\",\"z\":\"0\",\"c_origin\":\"4227.4798,3188.4336\",\"uuid\":\"25f113603be24a279bc54a86db776d75\",\"c_etype\":\"outline3D\",\"title\":\"R0402_L1.0-W0.5-H0.5\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge104636\"},\"childNodes\":[{\"gId\":\"gge104639\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4228.4248 3186.465 4228.3854 3186.465 4226.535 3186.465 4226.535 3186.5044 4226.4957 3186.5044 4226.4957 3186.5437 4226.4957 3187.3311 4226.4957 3187.4099 4226.4957 3187.4493 4226.535 3187.4493 4226.535 3189.4178 4226.4957 3189.4178 4226.4957 3189.4571 4226.4957 3189.5359 4226.4957 3190.3233 4226.4957 3190.3626 4226.535 3190.3626 4226.5744 3190.402 4227.4799 3190.402 4228.4248 3190.402 4228.4248 3190.3626 4228.4642 3190.3626 4228.4642 3190.3233 4228.4642 3189.5359 4228.4642 3189.4965 4228.4642 3189.4571 4228.4642 3189.4178 4228.4248 3189.4178 4228.4248 3187.4493 4228.4642 3187.4493 4228.4642 3187.4099 4228.4642 3187.3311 4228.4642 3186.5437 4228.4642 3186.5044 4228.4248 3186.5044 4228.4248 3186.465 4228.4248 3186.465\",\"id\":\"gge104639\"}}]}#@$PAD~RECT~4227.48~3190.138~2.227~2.126~1~I-~2~0~4226.4169 3189.0241 4228.5429 3189.0241 4228.5429 3191.251 4226.4169 3191.251~270~gge104642~0~~Y~0~-393.7008~0.2000~4227.4799,3190.1375#@$PAD~RECT~4227.48~3186.729~2.227~2.126~1~OUT~1~0~4226.4169 3187.8429 4228.5429 3187.8429 4228.5429 3185.616 4226.4169 3185.616~270~gge104657~0~~Y~0~-393.7008~0.2000~4227.4799,3186.7295",
106 | "LIB~4229.0547~3196.3075~package`R0402`Contributor`lcsc`nameAlias`Value`Supplier`LCSC`Supplier Part`C365051`Manufacturer`RESI(开步睿思)`Manufacturer Part`HPCR0402F75R0K9`Value`47k`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C365051&%26type=1&ref=editor`3DModel`R0402_L1.0-W0.5-H0.5`~180~~gge2d4d01133ba27e83~1~fafd024f554e426eb74cf4a204aa88b0~1670641503~0~~yes~~#@$TEXT~N~4229.055~3206.308~0.6~180~0~3~~4.5~R0402~M 4229.0547 3210.8475 L 4229.0547 3206.5575 M 4229.0547 3210.8475 L 4227.2147 3210.8475 L 4226.6047 3210.6475 L 4226.3947 3210.4375 L 4226.1947 3210.0275 L 4226.1947 3209.6175 L 4226.3947 3209.2075 L 4226.6047 3209.0075 L 4227.2147 3208.8075 L 4229.0547 3208.8075 M 4227.6247 3208.8075 L 4226.1947 3206.5575 M 4223.6147 3210.8475 L 4224.2247 3210.6475 L 4224.6347 3210.0275 L 4224.8447 3209.0075 L 4224.8447 3208.3975 L 4224.6347 3207.3675 L 4224.2247 3206.7575 L 4223.6147 3206.5575 L 4223.2047 3206.5575 L 4222.5947 3206.7575 L 4222.1847 3207.3675 L 4221.9747 3208.3975 L 4221.9747 3209.0075 L 4222.1847 3210.0275 L 4222.5947 3210.6475 L 4223.2047 3210.8475 L 4223.6147 3210.8475 M 4218.5847 3210.8475 L 4220.6247 3207.9875 L 4217.5547 3207.9875 M 4218.5847 3210.8475 L 4218.5847 3206.5575 M 4214.9847 3210.8475 L 4215.5947 3210.6475 L 4216.0047 3210.0275 L 4216.2047 3209.0075 L 4216.2047 3208.3975 L 4216.0047 3207.3675 L 4215.5947 3206.7575 L 4214.9847 3206.5575 L 4214.5747 3206.5575 L 4213.9547 3206.7575 L 4213.5547 3207.3675 L 4213.3447 3208.3975 L 4213.3447 3209.0075 L 4213.5547 3210.0275 L 4213.9547 3210.6475 L 4214.5747 3210.8475 L 4214.9847 3210.8475 M 4211.7947 3209.8275 L 4211.7947 3210.0275 L 4211.5847 3210.4375 L 4211.3847 3210.6475 L 4210.9747 3210.8475 L 4210.1547 3210.8475 L 4209.7447 3210.6475 L 4209.5447 3210.4375 L 4209.3347 3210.0275 L 4209.3347 3209.6175 L 4209.5447 3209.2075 L 4209.9547 3208.5975 L 4211.9947 3206.5575 L 4209.1347 3206.5575~none~gge104927~~0~#@$TEXT~P~4234.205~3198.658~0.6~0~0~3~~4.5~R7~M 4234.2066 3194.12 L 4234.2066 3198.41 M 4234.2066 3194.12 L 4236.0466 3194.12 L 4236.6566 3194.32 L 4236.8666 3194.53 L 4237.0666 3194.93 L 4237.0666 3195.34 L 4236.8666 3195.75 L 4236.6566 3195.96 L 4236.0466 3196.16 L 4234.2066 3196.16 M 4235.6366 3196.16 L 4237.0666 3198.41 M 4241.2866 3194.12 L 4239.2366 3198.41 M 4238.4166 3194.12 L 4241.2866 3194.12~none~gge104933~~0~#@$SOLIDREGION~100~~M 4228.0647 3195.3233 L 4228.0647 3197.2919 L 4227.0805 3197.2919 L 4227.0805 3195.3233 Z ~solid~gge104939~~~~0#@$SOLIDREGION~100~~M 4230.0347 3197.2919 L 4230.0347 3195.3233 L 4231.0189 3195.3233 L 4231.0189 3197.2919 Z ~solid~gge104942~~~~0#@$SOLIDREGION~99~~M 4231.0232 3195.3233 L 4231.0232 3197.2918 L 4227.0862 3197.2918 L 4227.0862 3195.3233 Z ~solid~gge104945~~~~0#@$SOLIDREGION~5~~M 4228.5232 3195.402 L 4228.5232 3197.213 L 4228.3657 3197.3705 L 4226.3947 3197.3705 L 4226.2372 3197.213 L 4226.2372 3195.402 L 4226.3947 3195.2445 L 4228.3657 3195.2445 Z ~solid~gge104948~~~~0#@$SOLIDREGION~5~~M 4229.5862 3195.402 L 4229.5862 3197.213 L 4229.7437 3197.3705 L 4231.7147 3197.3705 L 4231.8722 3197.213 L 4231.8722 3195.402 L 4231.7147 3195.2445 L 4229.7437 3195.2445 Z ~solid~gge104951~~~~0#@$TRACK~0.6~3~~4229.9453 3194.3445 4232.7722 3194.3445 4232.7722 3198.2705 4229.9453 3198.2705~gge104954~0#@$TRACK~0.6~3~~4228.1641 3194.3445 4225.3372 3194.3445 4225.3372 3198.2705 4228.1641 3198.2705~gge104957~0#@$CIRCLE~4231.023~3195.324~0.118~0.2362~101~gge104960~0~~#@$SVGNODE~{\"gId\":\"gge104963\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"3.937\",\"c_height\":\"1.9685\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4229.0548,3196.3075\",\"uuid\":\"25f113603be24a279bc54a86db776d75\",\"c_etype\":\"outline3D\",\"title\":\"R0402_L1.0-W0.5-H0.5\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge104963\"},\"childNodes\":[{\"gId\":\"gge104966\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4231.0232 3197.2524 4231.0232 3197.213 4231.0232 3195.3626 4230.9838 3195.3626 4230.9838 3195.3233 4230.9445 3195.3233 4230.1571 3195.3233 4230.0783 3195.3233 4230.0389 3195.3233 4230.0389 3195.3626 4228.0704 3195.3626 4228.0704 3195.3233 4228.0311 3195.3233 4227.9523 3195.3233 4227.1649 3195.3233 4227.1256 3195.3233 4227.1256 3195.3626 4227.0862 3195.402 4227.0862 3196.3075 4227.0862 3197.2524 4227.1256 3197.2524 4227.1256 3197.2918 4227.1649 3197.2918 4227.9523 3197.2918 4227.9917 3197.2918 4228.0311 3197.2918 4228.0704 3197.2918 4228.0704 3197.2524 4230.0389 3197.2524 4230.0389 3197.2918 4230.0783 3197.2918 4230.1571 3197.2918 4230.9445 3197.2918 4230.9838 3197.2918 4230.9838 3197.2524 4231.0232 3197.2524 4231.0232 3197.2524\",\"id\":\"gge104966\"}}]}#@$PAD~RECT~4227.351~3196.308~2.227~2.126~1~I-~2~0~4228.4641 3195.2445 4228.4641 3197.3705 4226.2372 3197.3705 4226.2372 3195.2445~180~gge104969~0~~Y~0~-393.7008~0.2000~4227.3507,3196.3075#@$PAD~RECT~4230.759~3196.308~2.227~2.126~1~GND~1~0~4229.6453 3195.2445 4229.6453 3197.3705 4231.8722 3197.3705 4231.8722 3195.2445~180~gge104984~0~~Y~0~-393.7008~0.2000~4230.7587,3196.3075",
107 | "LIB~4214.4878~3194.7327~package`CAP-SMD_L1.0-W0.5`nameAlias`Value`Contributor`lcsc`Supplier`LCSC`Supplier Part`C209647`Manufacturer`ROHM(罗姆)`Manufacturer Part`TCTU1D334M8R`Value`1uf`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C209647&%26type=1&ref=editor`3DModel`CAP-SMD_L1.0-W0.5-H0.6`~90~~gge428999c3652ce50f~1~d6e2cd2205a244569a36d509a7e5b3a8~1638324339~0~~yes~~#@$TEXT~N~4204.488~3195.902~0.6~90~0~3~~4.5~CAP-SMD_L1.0-W0.5~M 4200.9678 3192.8327 L 4200.5578 3193.0427 L 4200.1478 3193.4527 L 4199.9478 3193.8527 L 4199.9478 3194.6727 L 4200.1478 3195.0827 L 4200.5578 3195.4927 L 4200.9678 3195.7027 L 4201.5878 3195.9027 L 4202.6078 3195.9027 L 4203.2178 3195.7027 L 4203.6278 3195.4927 L 4204.0378 3195.0827 L 4204.2378 3194.6727 L 4204.2378 3193.8527 L 4204.0378 3193.4527 L 4203.6278 3193.0427 L 4203.2178 3192.8327 M 4199.9478 3189.8527 L 4204.2378 3191.4827 M 4199.9478 3189.8527 L 4204.2378 3188.2127 M 4202.8078 3190.8727 L 4202.8078 3188.8227 M 4199.9478 3186.8627 L 4204.2378 3186.8627 M 4199.9478 3186.8627 L 4199.9478 3185.0227 L 4200.1478 3184.4027 L 4200.3578 3184.2027 L 4200.7678 3184.0027 L 4201.3778 3184.0027 L 4201.7878 3184.2027 L 4201.9878 3184.4027 L 4202.1978 3185.0227 L 4202.1978 3186.8627 M 4202.3978 3182.6527 L 4202.3978 3178.9627 M 4200.5578 3174.7527 L 4200.1478 3175.1627 L 4199.9478 3175.7727 L 4199.9478 3176.5927 L 4200.1478 3177.2027 L 4200.5578 3177.6127 L 4200.9678 3177.6127 L 4201.3778 3177.4127 L 4201.5878 3177.2027 L 4201.7878 3176.8027 L 4202.1978 3175.5727 L 4202.3978 3175.1627 L 4202.6078 3174.9527 L 4203.0178 3174.7527 L 4203.6278 3174.7527 L 4204.0378 3175.1627 L 4204.2378 3175.7727 L 4204.2378 3176.5927 L 4204.0378 3177.2027 L 4203.6278 3177.6127 M 4199.9478 3173.4027 L 4204.2378 3173.4027 M 4199.9478 3173.4027 L 4204.2378 3171.7627 M 4199.9478 3170.1327 L 4204.2378 3171.7627 M 4199.9478 3170.1327 L 4204.2378 3170.1327 M 4199.9478 3168.7827 L 4204.2378 3168.7827 M 4199.9478 3168.7827 L 4199.9478 3167.3527 L 4200.1478 3166.7327 L 4200.5578 3166.3227 L 4200.9678 3166.1227 L 4201.5878 3165.9127 L 4202.6078 3165.9127 L 4203.2178 3166.1227 L 4203.6278 3166.3227 L 4204.0378 3166.7327 L 4204.2378 3167.3527 L 4204.2378 3168.7827 M 4205.6778 3164.5627 L 4205.6778 3160.8827 M 4199.9478 3159.5327 L 4204.2378 3159.5327 M 4204.2378 3159.5327 L 4204.2378 3157.0827 M 4200.7678 3155.7327 L 4200.5578 3155.3227 L 4199.9478 3154.7027 L 4204.2378 3154.7027 M 4203.2178 3153.1527 L 4203.4278 3153.3527 L 4203.6278 3153.1527 L 4203.4278 3152.9527 L 4203.2178 3153.1527 M 4199.9478 3150.3727 L 4200.1478 3150.9827 L 4200.7678 3151.3927 L 4201.7878 3151.6027 L 4202.3978 3151.6027 L 4203.4278 3151.3927 L 4204.0378 3150.9827 L 4204.2378 3150.3727 L 4204.2378 3149.9627 L 4204.0378 3149.3527 L 4203.4278 3148.9427 L 4202.3978 3148.7327 L 4201.7878 3148.7327 L 4200.7678 3148.9427 L 4200.1478 3149.3527 L 4199.9478 3149.9627 L 4199.9478 3150.3727 M 4202.3978 3147.3827 L 4202.3978 3143.7027 M 4199.9478 3142.3527 L 4204.2378 3141.3327 M 4199.9478 3140.3027 L 4204.2378 3141.3327 M 4199.9478 3140.3027 L 4204.2378 3139.2827 M 4199.9478 3138.2627 L 4204.2378 3139.2827 M 4199.9478 3135.6827 L 4200.1478 3136.3027 L 4200.7678 3136.7027 L 4201.7878 3136.9127 L 4202.3978 3136.9127 L 4203.4278 3136.7027 L 4204.0378 3136.3027 L 4204.2378 3135.6827 L 4204.2378 3135.2727 L 4204.0378 3134.6627 L 4203.4278 3134.2527 L 4202.3978 3134.0527 L 4201.7878 3134.0527 L 4200.7678 3134.2527 L 4200.1478 3134.6627 L 4199.9478 3135.2727 L 4199.9478 3135.6827 M 4203.2178 3132.4927 L 4203.4278 3132.7027 L 4203.6278 3132.4927 L 4203.4278 3132.2927 L 4203.2178 3132.4927 M 4199.9478 3128.4827 L 4199.9478 3130.5327 L 4201.7878 3130.7327 L 4201.5878 3130.5327 L 4201.3778 3129.9127 L 4201.3778 3129.3027 L 4201.5878 3128.6927 L 4201.9878 3128.2827 L 4202.6078 3128.0727 L 4203.0178 3128.0727 L 4203.6278 3128.2827 L 4204.0378 3128.6927 L 4204.2378 3129.3027 L 4204.2378 3129.9127 L 4204.0378 3130.5327 L 4203.8378 3130.7327 L 4203.4278 3130.9427~none~gge131685~~0~#@$TEXT~P~4217.488~3204.732~0.6~90~0~3~~4.5~U20~M 4212.9485 3204.7355 L 4216.0185 3204.7355 L 4216.6285 3204.5255 L 4217.0385 3204.1155 L 4217.2385 3203.5055 L 4217.2385 3203.0955 L 4217.0385 3202.4855 L 4216.6285 3202.0755 L 4216.0185 3201.8655 L 4212.9485 3201.8655 M 4213.9685 3200.3155 L 4213.7685 3200.3155 L 4213.3585 3200.1055 L 4213.1485 3199.9055 L 4212.9485 3199.4955 L 4212.9485 3198.6755 L 4213.1485 3198.2655 L 4213.3585 3198.0655 L 4213.7685 3197.8555 L 4214.1785 3197.8555 L 4214.5785 3198.0655 L 4215.1985 3198.4755 L 4217.2385 3200.5155 L 4217.2385 3197.6555 M 4212.9485 3195.0755 L 4213.1485 3195.6955 L 4213.7685 3196.1055 L 4214.7885 3196.3055 L 4215.3985 3196.3055 L 4216.4285 3196.1055 L 4217.0385 3195.6955 L 4217.2385 3195.0755 L 4217.2385 3194.6655 L 4217.0385 3194.0555 L 4216.4285 3193.6455 L 4215.3985 3193.4455 L 4214.7885 3193.4455 L 4213.7685 3193.6455 L 4213.1485 3194.0555 L 4212.9485 3194.6655 L 4212.9485 3195.0755~none~gge131691~~0~#@$CIRCLE~4215.472~3196.7~0.118~0.2362~101~gge131697~0~~#@$SOLIDREGION~99~~M 4215.472 3196.7011 L 4213.5035 3196.7011 L 4213.5035 3192.7641 L 4215.472 3192.7641 Z ~solid~gge131700~~~~0#@$TRACK~0.4~3~~4212.7878 3195.8327 4212.7878 3198.5327 4213.0878 3198.8327 4215.8878 3198.8327 4216.1878 3198.5327 4216.1878 3198.0327~gge131703~0#@$TRACK~0.4~3~~4216.1878 3193.9627 4216.1878 3191.5627 4212.7878 3191.5627 4212.7878 3193.6627 4212.7878 3193.9627~gge131706~0#@$TRACK~0.4~3~~4212.7878 3195.6327 4212.7878 3198.1327 4216.1878 3198.1327 4216.1878 3196.0327 4216.1878 3195.6327~gge131709~0#@$SOLIDREGION~12~~M 4214.291 3197.4886 L 4214.6846 3197.4886 L 4214.6846 3196.3075 L 4214.291 3196.3075 Z ~solid~gge131712~~~~0#@$SOLIDREGION~12~~M 4215.0787 3197.0945 L 4215.0787 3196.7009 L 4213.8976 3196.7009 L 4213.8976 3197.0945 Z ~solid~gge131715~~~~0#@$SOLIDREGION~12~~M 4214.291 3193.1579 L 4214.6846 3193.1579 L 4214.6846 3191.9768 L 4214.291 3191.9768 Z ~solid~gge131718~~~~0#@$SOLIDREGION~12~~M 4213.7004 3197.6854 L 4213.7004 3197.2917 L 4212.7166 3197.292 L 4212.7166 3197.6856 Z ~solid~gge131721~~~~0#@$SOLIDREGION~12~~M 4216.2595 3197.6854 L 4216.2595 3197.2922 L 4215.2752 3197.2917 L 4215.2752 3197.6854 Z ~solid~gge131724~~~~0#@$SOLIDREGION~100~~M 4213.7988 3193.9452 L 4213.7988 3192.5672 L 4215.1768 3192.5672 L 4215.1768 3193.9452 Z ~solid~gge131727~~~~0#@$SOLIDREGION~100~~M 4213.7988 3196.7011 L 4213.7988 3195.3231 L 4215.1768 3195.3231 L 4215.1768 3196.7011 Z ~solid~gge131730~~~~0#@$SVGNODE~{\"gId\":\"gge131733\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"4.3307\",\"c_height\":\"1.9685\",\"c_rotation\":\"0,0,90\",\"z\":\"0\",\"c_origin\":\"4214.4879,3194.7328\",\"uuid\":\"db965819f32b4ad79fd5b088f13cfa9b\",\"c_etype\":\"outline3D\",\"title\":\"CAP-SMD_L1.0-W0.5-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge131733\"},\"childNodes\":[{\"gId\":\"gge131736\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4213.7791 3196.8981 4215.1571 3196.8981 4215.1571 3196.7012 4215.3539 3196.7012 4215.4327 3196.7012 4215.4721 3196.7012 4215.4721 3196.6618 4215.4721 3196.5831 4215.4721 3194.8114 4215.4721 3192.8429 4215.4721 3192.8036 4215.4721 3192.7642 4215.3933 3192.7642 4215.3539 3192.7642 4215.1571 3192.7642 4215.1571 3192.5674 4213.7791 3192.5674 4213.7791 3192.7642 4213.6217 3192.7642 4213.5429 3192.7642 4213.5036 3192.7642 4213.5036 3192.8036 4213.5036 3192.8823 4213.5036 3194.8114 4213.5036 3196.6225 4213.5036 3196.6618 4213.5036 3196.7012 4213.5823 3196.7012 4213.6217 3196.7012 4213.7791 3196.7012 4213.7791 3196.8981 4213.7791 3196.8981\",\"id\":\"gge131736\"}}]}#@$PAD~RECT~4214.488~3196.403~2.362~2.559~1~GND~1~0~4213.2088 3197.5837 4213.2088 3195.2217 4215.7668 3195.2217 4215.7668 3197.5837~90~gge131739~0~~Y~0~0~0.2~4214.4878,3196.4027#@$PAD~RECT~4214.488~3193.063~2.362~2.559~1~VCC2~2~0~4213.2088 3194.2437 4213.2088 3191.8817 4215.7668 3191.8817 4215.7668 3194.2437~90~gge131757~0~~Y~0~0~0.2~4214.4878,3193.0627",
108 | "LIB~4204.2524~3210.6838~package`CAP-SMD_L1.0-W0.5`nameAlias`Value`Contributor`lcsc`Supplier`LCSC`Supplier Part`C209647`Manufacturer`ROHM(罗姆)`Manufacturer Part`TCTU1D334M8R`Value`1uf`JLCPCB Part Class`Extended Part`link`https://lcsc.com/eda_search?q=C209647&%26type=1&ref=editor`3DModel`CAP-SMD_L1.0-W0.5-H0.6`~180~~gge5e5d7960e8605714~1~d6e2cd2205a244569a36d509a7e5b3a8~1638324339~0~~yes~~#@$TEXT~N~4205.422~3220.684~0.6~180~0~3~~4.5~CAP-SMD_L1.0-W0.5~M 4202.3524 3224.2038 L 4202.5624 3224.6138 L 4202.9724 3225.0238 L 4203.3724 3225.2238 L 4204.1924 3225.2238 L 4204.6024 3225.0238 L 4205.0124 3224.6138 L 4205.2224 3224.2038 L 4205.4224 3223.5838 L 4205.4224 3222.5638 L 4205.2224 3221.9538 L 4205.0124 3221.5438 L 4204.6024 3221.1338 L 4204.1924 3220.9338 L 4203.3724 3220.9338 L 4202.9724 3221.1338 L 4202.5624 3221.5438 L 4202.3524 3221.9538 M 4199.3724 3225.2238 L 4201.0024 3220.9338 M 4199.3724 3225.2238 L 4197.7324 3220.9338 M 4200.3924 3222.3638 L 4198.3424 3222.3638 M 4196.3824 3225.2238 L 4196.3824 3220.9338 M 4196.3824 3225.2238 L 4194.5424 3225.2238 L 4193.9224 3225.0238 L 4193.7224 3224.8138 L 4193.5224 3224.4038 L 4193.5224 3223.7938 L 4193.7224 3223.3838 L 4193.9224 3223.1838 L 4194.5424 3222.9738 L 4196.3824 3222.9738 M 4192.1724 3222.7738 L 4188.4824 3222.7738 M 4184.2724 3224.6138 L 4184.6824 3225.0238 L 4185.2924 3225.2238 L 4186.1124 3225.2238 L 4186.7224 3225.0238 L 4187.1324 3224.6138 L 4187.1324 3224.2038 L 4186.9324 3223.7938 L 4186.7224 3223.5838 L 4186.3224 3223.3838 L 4185.0924 3222.9738 L 4184.6824 3222.7738 L 4184.4724 3222.5638 L 4184.2724 3222.1538 L 4184.2724 3221.5438 L 4184.6824 3221.1338 L 4185.2924 3220.9338 L 4186.1124 3220.9338 L 4186.7224 3221.1338 L 4187.1324 3221.5438 M 4182.9224 3225.2238 L 4182.9224 3220.9338 M 4182.9224 3225.2238 L 4181.2824 3220.9338 M 4179.6524 3225.2238 L 4181.2824 3220.9338 M 4179.6524 3225.2238 L 4179.6524 3220.9338 M 4178.3024 3225.2238 L 4178.3024 3220.9338 M 4178.3024 3225.2238 L 4176.8724 3225.2238 L 4176.2524 3225.0238 L 4175.8424 3224.6138 L 4175.6424 3224.2038 L 4175.4324 3223.5838 L 4175.4324 3222.5638 L 4175.6424 3221.9538 L 4175.8424 3221.5438 L 4176.2524 3221.1338 L 4176.8724 3220.9338 L 4178.3024 3220.9338 M 4174.0824 3219.4938 L 4170.4024 3219.4938 M 4169.0524 3225.2238 L 4169.0524 3220.9338 M 4169.0524 3220.9338 L 4166.6024 3220.9338 M 4165.2524 3224.4038 L 4164.8424 3224.6138 L 4164.2224 3225.2238 L 4164.2224 3220.9338 M 4162.6724 3221.9538 L 4162.8724 3221.7438 L 4162.6724 3221.5438 L 4162.4724 3221.7438 L 4162.6724 3221.9538 M 4159.8924 3225.2238 L 4160.5024 3225.0238 L 4160.9124 3224.4038 L 4161.1224 3223.3838 L 4161.1224 3222.7738 L 4160.9124 3221.7438 L 4160.5024 3221.1338 L 4159.8924 3220.9338 L 4159.4824 3220.9338 L 4158.8724 3221.1338 L 4158.4624 3221.7438 L 4158.2524 3222.7738 L 4158.2524 3223.3838 L 4158.4624 3224.4038 L 4158.8724 3225.0238 L 4159.4824 3225.2238 L 4159.8924 3225.2238 M 4156.9024 3222.7738 L 4153.2224 3222.7738 M 4151.8724 3225.2238 L 4150.8524 3220.9338 M 4149.8224 3225.2238 L 4150.8524 3220.9338 M 4149.8224 3225.2238 L 4148.8024 3220.9338 M 4147.7824 3225.2238 L 4148.8024 3220.9338 M 4145.2024 3225.2238 L 4145.8224 3225.0238 L 4146.2224 3224.4038 L 4146.4324 3223.3838 L 4146.4324 3222.7738 L 4146.2224 3221.7438 L 4145.8224 3221.1338 L 4145.2024 3220.9338 L 4144.7924 3220.9338 L 4144.1824 3221.1338 L 4143.7724 3221.7438 L 4143.5724 3222.7738 L 4143.5724 3223.3838 L 4143.7724 3224.4038 L 4144.1824 3225.0238 L 4144.7924 3225.2238 L 4145.2024 3225.2238 M 4142.0124 3221.9538 L 4142.2224 3221.7438 L 4142.0124 3221.5438 L 4141.8124 3221.7438 L 4142.0124 3221.9538 M 4138.0024 3225.2238 L 4140.0524 3225.2238 L 4140.2524 3223.3838 L 4140.0524 3223.5838 L 4139.4324 3223.7938 L 4138.8224 3223.7938 L 4138.2124 3223.5838 L 4137.8024 3223.1838 L 4137.5924 3222.5638 L 4137.5924 3222.1538 L 4137.8024 3221.5438 L 4138.2124 3221.1338 L 4138.8224 3220.9338 L 4139.4324 3220.9338 L 4140.0524 3221.1338 L 4140.2524 3221.3338 L 4140.4624 3221.7438~none~gge131802~~0~#@$TEXT~P~4214.252~3207.684~0.6~180~0~3~~4.5~U21~M 4214.2498 3212.2215 L 4214.2498 3209.1515 L 4214.0498 3208.5415 L 4213.6398 3208.1315 L 4213.0298 3207.9315 L 4212.6198 3207.9315 L 4211.9998 3208.1315 L 4211.5898 3208.5415 L 4211.3898 3209.1515 L 4211.3898 3212.2215 M 4209.8298 3211.2015 L 4209.8298 3211.4015 L 4209.6298 3211.8115 L 4209.4298 3212.0215 L 4209.0198 3212.2215 L 4208.1998 3212.2215 L 4207.7898 3212.0215 L 4207.5798 3211.8115 L 4207.3798 3211.4015 L 4207.3798 3211.0015 L 4207.5798 3210.5915 L 4207.9898 3209.9715 L 4210.0398 3207.9315 L 4207.1798 3207.9315 M 4205.8298 3211.4015 L 4205.4198 3211.6115 L 4204.7998 3212.2215 L 4204.7998 3207.9315~none~gge131808~~0~#@$CIRCLE~4206.22~3209.7~0.118~0.2362~101~gge131814~0~~#@$SOLIDREGION~99~~M 4206.2208 3209.6996 L 4206.2208 3211.6681 L 4202.2838 3211.6681 L 4202.2838 3209.6996 Z ~solid~gge131817~~~~0#@$TRACK~0.4~3~~4205.3524 3212.3838 4208.0524 3212.3838 4208.3524 3212.0838 4208.3524 3209.2838 4208.0524 3208.9838 4207.5524 3208.9838~gge131820~0#@$TRACK~0.4~3~~4203.4824 3208.9838 4201.0824 3208.9838 4201.0824 3212.3838 4203.1824 3212.3838 4203.4824 3212.3838~gge131823~0#@$TRACK~0.4~3~~4205.1524 3212.3838 4207.6524 3212.3838 4207.6524 3208.9838 4205.5524 3208.9838 4205.1524 3208.9838~gge131826~0#@$SOLIDREGION~12~~M 4207.0083 3210.8806 L 4207.0083 3210.487 L 4205.8272 3210.487 L 4205.8272 3210.8806 Z ~solid~gge131829~~~~0#@$SOLIDREGION~12~~M 4206.6142 3210.0929 L 4206.2206 3210.0929 L 4206.2206 3211.274 L 4206.6142 3211.274 Z ~solid~gge131832~~~~0#@$SOLIDREGION~12~~M 4202.6776 3210.8806 L 4202.6776 3210.487 L 4201.4965 3210.487 L 4201.4965 3210.8806 Z ~solid~gge131835~~~~0#@$SOLIDREGION~12~~M 4207.2051 3211.4712 L 4206.8114 3211.4712 L 4206.8117 3212.455 L 4207.2053 3212.455 Z ~solid~gge131838~~~~0#@$SOLIDREGION~12~~M 4207.2051 3208.9121 L 4206.8119 3208.9121 L 4206.8114 3209.8964 L 4207.2051 3209.8964 Z ~solid~gge131841~~~~0#@$SOLIDREGION~100~~M 4203.4649 3211.3728 L 4202.0869 3211.3728 L 4202.0869 3209.9948 L 4203.4649 3209.9948 Z ~solid~gge131844~~~~0#@$SOLIDREGION~100~~M 4206.2208 3211.3728 L 4204.8428 3211.3728 L 4204.8428 3209.9948 L 4206.2208 3209.9948 Z ~solid~gge131847~~~~0#@$SVGNODE~{\"gId\":\"gge131850\",\"nodeName\":\"g\",\"nodeType\":1,\"layerid\":\"19\",\"attrs\":{\"c_width\":\"4.3307\",\"c_height\":\"1.9685\",\"c_rotation\":\"0,0,180\",\"z\":\"0\",\"c_origin\":\"4204.2523,3210.6837\",\"uuid\":\"db965819f32b4ad79fd5b088f13cfa9b\",\"c_etype\":\"outline3D\",\"title\":\"CAP-SMD_L1.0-W0.5-H0.6\",\"layerid\":\"19\",\"transform\":\"scale(1) translate(0, 0)\",\"id\":\"gge131850\"},\"childNodes\":[{\"gId\":\"gge131853\",\"nodeName\":\"polyline\",\"nodeType\":1,\"attrs\":{\"fill\":\"none\",\"c_shapetype\":\"line\",\"points\":\"4206.4178 3211.3925 4206.4178 3210.0145 4206.2209 3210.0145 4206.2209 3209.8177 4206.2209 3209.7389 4206.2209 3209.6995 4206.1815 3209.6995 4206.1028 3209.6995 4204.3311 3209.6995 4202.3626 3209.6995 4202.3233 3209.6995 4202.2839 3209.6995 4202.2839 3209.7783 4202.2839 3209.8177 4202.2839 3210.0145 4202.0871 3210.0145 4202.0871 3211.3925 4202.2839 3211.3925 4202.2839 3211.5499 4202.2839 3211.6287 4202.2839 3211.668 4202.3233 3211.668 4202.402 3211.668 4204.3311 3211.668 4206.1422 3211.668 4206.1815 3211.668 4206.2209 3211.668 4206.2209 3211.5893 4206.2209 3211.5499 4206.2209 3211.3925 4206.4178 3211.3925 4206.4178 3211.3925\",\"id\":\"gge131853\"}}]}#@$PAD~RECT~4205.922~3210.684~2.362~2.559~1~GND~1~0~4207.1034 3211.9628 4204.7414 3211.9628 4204.7414 3209.4048 4207.1034 3209.4048~180~gge131856~0~~Y~0~0~0.2~4205.9224,3210.6838#@$PAD~RECT~4202.582~3210.684~2.362~2.559~1~VCC3~2~0~4203.7634 3211.9628 4201.4014 3211.9628 4201.4014 3209.4048 4203.7634 3209.4048~180~gge131874~0~~Y~0~0~0.2~4202.5824,3210.6838",
109 | "HOLE~4257~3206~4.5276~gge43531~0",
110 | "HOLE~4216.7~3166~4.5276~gge53286~0",
111 | "HOLE~4176.7~3206.3~4.5276~gge53301~0",
112 | "HOLE~4217~3246.3~4.5276~gge53316~0",
113 | "VIA~4199.134~3228.197~2.4016~GND~0.6004~gge228702~0",
114 | "VIA~4201.102~3230.953~2.4016~A0~0.6004~gge228714~0",
115 | "VIA~4185.748~3208.119~2.4016~A1~0.6004~gge228747~0",
116 | "VIA~4186.535~3201.426~2.4016~A2~0.6004~gge228774~0",
117 | "VIA~4216.85~3222.685~2.4016~VCC~0.6004~gge228798~0",
118 | "VIA~4216.85~3229.772~2.4016~GND~0.6004~gge228825~0",
119 | "VIA~4214.488~3197.882~2.4016~GND~0.6004~gge228852~0",
120 | "VIA~4232.204~3196.308~2.4016~GND~0.6004~gge228891~0",
121 | "VIA~4242.047~3196.701~2.4016~GND~0.6004~gge228903~0",
122 | "VIA~4207.401~3210.874~2.4016~GND~0.6004~gge228927~0",
123 | "VIA~4210.551~3234.89~2.4016~A10~0.6004~gge228966~0",
124 | "VIA~4215.669~3237.252~2.4016~A9~0.6004~gge229008~0",
125 | "VIA~4199.134~3213.237~2.4016~A11~0.6004~gge229032~0",
126 | "VIA~4210.551~3217.567~2.4016~A7~0.6004~gge229059~0",
127 | "VIA~4210.551~3220.323~2.4016~A8~0.6004~gge229134~0",
128 | "VIA~4210.551~3223.079~2.4016~RESET~0.6004~gge229167~0",
129 | "VIA~4233.385~3206.15~2.4016~A12~0.6004~gge229251~0",
130 | "VIA~4237.524~3186.333~2.4016~GND~0.6004~gge229278~0",
131 | "VIA~4204.252~3192.764~2.4016~GND~0.6004~gge229290~0",
132 | "VIA~4201.1~3220.92~2.4016~GND~0.6004~gge229302~0",
133 | "VIA~4207.401~3175.048~2.4016~A13~0.6004~gge229353~0",
134 | "VIA~4199.33~3199.221~2.4016~A11~0.6004~gge229383~0",
135 | "VIA~4205.433~3200.245~2.4016~RESET~0.6004~gge229407~0",
136 | "VIA~4197.952~3180.56~2.4016~A3~0.6004~gge229458~0",
137 | "VIA~4240.472~3206.15~2.4016~A6~0.6004~gge229488~0",
138 | "VIA~4221.181~3206.15~2.4016~A4~0.6004~gge229515~0",
139 | "VIA~4194.803~3215.599~2.4016~A5~0.6004~gge229557~0",
140 | "VIA~4202.677~3172.292~2.4016~A5~0.6004~gge229587~0",
141 | "VIA~4223.937~3174.654~2.4016~A5~0.6004~gge229614~0",
142 | "VIA~4188.897~3188.827~2.4016~CLK~0.6004~gge229641~0",
143 | "VIA~4193.228~3232.922~2.4016~CLK~0.6004~gge229668~0",
144 | "VIA~4222.756~3237.646~2.4016~RESET~0.6004~gge229731~0",
145 | "VIA~4226.693~3219.93~2.4016~RESET~0.6004~gge229758~0",
146 | "VIA~4243.622~3217.174~2.4016~DF~0.6004~gge229809~0",
147 | "HOLE~4188.897~3188.827~4~gge229939~0",
148 | "HOLE~4226.693~3219.93~4~gge229954~0",
149 | "HOLE~4236.535~3219.93~4~gge229969~0",
150 | "HOLE~4236.535~3230.166~4~gge229984~0",
151 | "HOLE~4226.693~3230.166~4~gge229999~0"
152 | ],
153 | "layers": [
154 | "1~TopLayer~#FF0000~true~true~true~",
155 | "2~BottomLayer~#0000FF~true~false~true~",
156 | "3~TopSilkLayer~#FFCC00~true~false~true~",
157 | "4~BottomSilkLayer~#66CC33~true~false~true~",
158 | "5~TopPasteMaskLayer~#808080~false~false~true~",
159 | "6~BottomPasteMaskLayer~#800000~true~false~true~",
160 | "7~TopSolderMaskLayer~#800080~false~false~true~0.3",
161 | "8~BottomSolderMaskLayer~#AA00FF~false~false~true~0.3",
162 | "9~Ratlines~#6464FF~true~false~true~",
163 | "10~BoardOutLine~#FF00FF~true~false~true~",
164 | "11~Multi-Layer~#C0C0C0~true~false~true~",
165 | "12~Document~#FFFFFF~true~false~true~",
166 | "13~TopAssembly~#33CC99~false~false~false~",
167 | "14~BottomAssembly~#5555FF~false~false~false~",
168 | "15~Mechanical~#F022F0~false~false~false~",
169 | "19~3DModel~#66CCFF~false~false~false~",
170 | "21~Inner1~#999966~false~false~false~~",
171 | "22~Inner2~#008000~false~false~false~~",
172 | "23~Inner3~#00FF00~false~false~false~~",
173 | "24~Inner4~#BC8E00~false~false~false~~",
174 | "25~Inner5~#70DBFA~false~false~false~~",
175 | "26~Inner6~#00CC66~false~false~false~~",
176 | "27~Inner7~#9966FF~false~false~false~~",
177 | "28~Inner8~#800080~false~false~false~~",
178 | "29~Inner9~#008080~false~false~false~~",
179 | "30~Inner10~#15935F~false~false~false~~",
180 | "31~Inner11~#000080~false~false~false~~",
181 | "32~Inner12~#00B400~false~false~false~~",
182 | "33~Inner13~#2E4756~false~false~false~~",
183 | "34~Inner14~#99842F~false~false~false~~",
184 | "35~Inner15~#FFFFAA~false~false~false~~",
185 | "36~Inner16~#99842F~false~false~false~~",
186 | "37~Inner17~#2E4756~false~false~false~~",
187 | "38~Inner18~#3535FF~false~false~false~~",
188 | "39~Inner19~#8000BC~false~false~false~~",
189 | "40~Inner20~#43AE5F~false~false~false~~",
190 | "41~Inner21~#C3ECCE~false~false~false~~",
191 | "42~Inner22~#728978~false~false~false~~",
192 | "43~Inner23~#39503F~false~false~false~~",
193 | "44~Inner24~#0C715D~false~false~false~~",
194 | "45~Inner25~#5A8A80~false~false~false~~",
195 | "46~Inner26~#2B937E~false~false~false~~",
196 | "47~Inner27~#23999D~false~false~false~~",
197 | "48~Inner28~#45B4E3~false~false~false~~",
198 | "49~Inner29~#215DA1~false~false~false~~",
199 | "50~Inner30~#4564D7~false~false~false~~",
200 | "51~Inner31~#6969E9~false~false~false~~",
201 | "52~Inner32~#9069E9~false~false~false~~",
202 | "99~ComponentShapeLayer~#00CCCC~false~false~false~0.4",
203 | "100~LeadShapeLayer~#CC9999~false~false~false~",
204 | "101~ComponentMarkingLayer~#66FFCC~false~false~false~",
205 | "Hole~Hole~#222222~false~false~true~",
206 | "DRCError~DRCError~#FAD609~false~false~true~"
207 | ],
208 | "objects": [
209 | "All~true~false",
210 | "Component~true~true",
211 | "Prefix~true~true",
212 | "Name~true~false",
213 | "Track~true~true",
214 | "Pad~true~true",
215 | "Via~true~true",
216 | "Hole~true~true",
217 | "Copper_Area~true~true",
218 | "Circle~true~true",
219 | "Arc~true~true",
220 | "Solid_Region~true~true",
221 | "Text~true~true",
222 | "Image~true~true",
223 | "Rect~true~true",
224 | "Dimension~true~true",
225 | "Protractor~true~true"
226 | ],
227 | "BBox": {
228 | "x": 4106.5,
229 | "y": 3101.5,
230 | "width": 234.5,
231 | "height": 219
232 | },
233 | "preference": {
234 | "hideFootprints": "",
235 | "hideNets": ""
236 | },
237 | "DRCRULE": {
238 | "Default": {
239 | "trackWidth": 1,
240 | "clearance": 0.5118,
241 | "viaHoleDiameter": 2.4016,
242 | "viaHoleD": 1.2008
243 | },
244 | "isRealtime": false,
245 | "isDrcOnRoutingOrPlaceVia": true,
246 | "checkObjectToCopperarea": true,
247 | "showDRCRangeLine": true
248 | },
249 | "routerRule": {
250 | "unit": "mm",
251 | "trackWidth": 0.254,
252 | "trackClearance": 0.13,
253 | "viaHoleD": 0.305,
254 | "viaDiameter": 0.61,
255 | "routerLayers": [
256 | 1,
257 | 2
258 | ],
259 | "smdClearance": 0.13,
260 | "specialNets": [
261 | {
262 | "net": "A12",
263 | "width": "1px",
264 | "clearance": "0.5118px",
265 | "viaHoleD": "1.2008px",
266 | "viaHoleDiameter": "2.4016px"
267 | },
268 | {
269 | "net": "A13",
270 | "width": "1px",
271 | "clearance": "0.5118px",
272 | "viaHoleD": "1.2008px",
273 | "viaHoleDiameter": "2.4016px"
274 | },
275 | {
276 | "net": "A6",
277 | "width": "1px",
278 | "clearance": "0.5118px",
279 | "viaHoleD": "1.2008px",
280 | "viaHoleDiameter": "2.4016px"
281 | },
282 | {
283 | "net": "A7",
284 | "width": "1px",
285 | "clearance": "0.5118px",
286 | "viaHoleD": "1.2008px",
287 | "viaHoleDiameter": "2.4016px"
288 | },
289 | {
290 | "net": "A8",
291 | "width": "1px",
292 | "clearance": "0.5118px",
293 | "viaHoleD": "1.2008px",
294 | "viaHoleDiameter": "2.4016px"
295 | },
296 | {
297 | "net": "A11",
298 | "width": "1px",
299 | "clearance": "0.5118px",
300 | "viaHoleD": "1.2008px",
301 | "viaHoleDiameter": "2.4016px"
302 | },
303 | {
304 | "net": "VCC",
305 | "width": "1px",
306 | "clearance": "0.5118px",
307 | "viaHoleD": "1.2008px",
308 | "viaHoleDiameter": "2.4016px"
309 | },
310 | {
311 | "net": "A10",
312 | "width": "1px",
313 | "clearance": "0.5118px",
314 | "viaHoleD": "1.2008px",
315 | "viaHoleDiameter": "2.4016px"
316 | },
317 | {
318 | "net": "A9",
319 | "width": "1px",
320 | "clearance": "0.5118px",
321 | "viaHoleD": "1.2008px",
322 | "viaHoleDiameter": "2.4016px"
323 | },
324 | {
325 | "net": "GND",
326 | "width": "1px",
327 | "clearance": "0.5118px",
328 | "viaHoleD": "1.2008px",
329 | "viaHoleDiameter": "2.4016px"
330 | },
331 | {
332 | "net": "A2",
333 | "width": "1px",
334 | "clearance": "0.5118px",
335 | "viaHoleD": "1.2008px",
336 | "viaHoleDiameter": "2.4016px"
337 | },
338 | {
339 | "net": "A1",
340 | "width": "1px",
341 | "clearance": "0.5118px",
342 | "viaHoleD": "1.2008px",
343 | "viaHoleDiameter": "2.4016px"
344 | },
345 | {
346 | "net": "A0",
347 | "width": "1px",
348 | "clearance": "0.5118px",
349 | "viaHoleD": "1.2008px",
350 | "viaHoleDiameter": "2.4016px"
351 | },
352 | {
353 | "net": "A3",
354 | "width": "1px",
355 | "clearance": "0.5118px",
356 | "viaHoleD": "1.2008px",
357 | "viaHoleDiameter": "2.4016px"
358 | },
359 | {
360 | "net": "A4",
361 | "width": "1px",
362 | "clearance": "0.5118px",
363 | "viaHoleD": "1.2008px",
364 | "viaHoleDiameter": "2.4016px"
365 | },
366 | {
367 | "net": "A5",
368 | "width": "1px",
369 | "clearance": "0.5118px",
370 | "viaHoleD": "1.2008px",
371 | "viaHoleDiameter": "2.4016px"
372 | },
373 | {
374 | "net": "DF",
375 | "width": "1px",
376 | "clearance": "0.5118px",
377 | "viaHoleD": "1.2008px",
378 | "viaHoleDiameter": "2.4016px"
379 | },
380 | {
381 | "net": "RESET",
382 | "width": "1px",
383 | "clearance": "0.5118px",
384 | "viaHoleD": "1.2008px",
385 | "viaHoleDiameter": "2.4016px"
386 | },
387 | {
388 | "net": "OUT",
389 | "width": "1px",
390 | "clearance": "0.5118px",
391 | "viaHoleD": "1.2008px",
392 | "viaHoleDiameter": "2.4016px"
393 | },
394 | {
395 | "net": "CLK",
396 | "width": "1px",
397 | "clearance": "0.5118px",
398 | "viaHoleD": "1.2008px",
399 | "viaHoleDiameter": "2.4016px"
400 | },
401 | {
402 | "net": "VCC3",
403 | "width": "1px",
404 | "clearance": "0.5118px",
405 | "viaHoleD": "1.2008px",
406 | "viaHoleDiameter": "2.4016px"
407 | },
408 | {
409 | "net": "VCC2",
410 | "width": "1px",
411 | "clearance": "0.5118px",
412 | "viaHoleD": "1.2008px",
413 | "viaHoleDiameter": "2.4016px"
414 | },
415 | {
416 | "net": "I-",
417 | "width": "1px",
418 | "clearance": "0.5118px",
419 | "viaHoleD": "1.2008px",
420 | "viaHoleDiameter": "2.4016px"
421 | },
422 | {
423 | "net": "VCC1",
424 | "width": "1px",
425 | "clearance": "0.5118px",
426 | "viaHoleD": "1.2008px",
427 | "viaHoleDiameter": "2.4016px"
428 | }
429 | ],
430 | "nets": [
431 | "A0",
432 | "A1",
433 | "A10",
434 | "A11",
435 | "A12",
436 | "A13",
437 | "A2",
438 | "A3",
439 | "A4",
440 | "A5",
441 | "A6",
442 | "A7",
443 | "A8",
444 | "A9",
445 | "CLK",
446 | "DF",
447 | "GND",
448 | "I-",
449 | "OUT",
450 | "RESET",
451 | "VCC",
452 | "VCC1",
453 | "VCC2",
454 | "VCC3"
455 | ],
456 | "padsCount": 64,
457 | "skipNets": [],
458 | "realtime": true
459 | },
460 | "netColors": {}
461 | }
--------------------------------------------------------------------------------